Example usage for io.netty.channel CombinedChannelDuplexHandler subclass-usage

List of usage examples for io.netty.channel CombinedChannelDuplexHandler subclass-usage

Introduction

In this page you can find the example usage for io.netty.channel CombinedChannelDuplexHandler subclass-usage.

Usage

From source file net.hasor.rsf.remoting.transport.netty.RSFCodec.java

/**
 * 
 * @version : 2014114
 * @author (zyc@hasor.net)
 */
public final class RSFCodec extends CombinedChannelDuplexHandler<RSFProtocolDecoder, RSFProtocolEncoder> {

From source file net.hasor.rsf.rpc.net.RsfDuplexHandler.java

/**
 * @version : 20170116
 * @author (zyc@hasor.net)
 */
@ChannelHandler.Sharable
public final class RsfDuplexHandler extends CombinedChannelDuplexHandler {

From source file openbns.commons.net.codec.sts.StsServerCodec.java

/**
 * A combination of {@link StsRequestDecoder} and {@link StsResponseEncoder}
 * which enables easier server side HTTP implementation.
 */
public final class StsServerCodec extends CombinedChannelDuplexHandler<StsRequestDecoder, StsResponseEncoder> {

From source file org.onosproject.xmpp.core.ctl.handlers.XmppChannelHandler.java

/**
 * Handles a XMPP channel related events and implements XMPP state machine.
 */
public class XmppChannelHandler extends CombinedChannelDuplexHandler implements XmppSession {

    private final Logger logger = LoggerFactory.getLogger(getClass());

From source file org.wso2.carbon.apimgt.gateway.handlers.WebsocketHandler.java

public class WebsocketHandler
        extends CombinedChannelDuplexHandler<WebsocketInboundHandler, WebsocketOutboundHandler> {

    public WebsocketHandler() {
        super(new WebsocketInboundHandler(), new WebsocketOutboundHandler());
    }