Example usage for io.netty.channel ChannelOutboundHandler interface-usage

List of usage examples for io.netty.channel ChannelOutboundHandler interface-usage

Introduction

In this page you can find the example usage for io.netty.channel ChannelOutboundHandler interface-usage.

Usage

From source file com.alibaba.dubbo.remoting.transport.netty4.NettyHandler.java

/**
 * NettyHandler
 * 
 * @author william.liangf
 * @author wuwen
 */

From source file com.couchbase.client.core.endpoint.binary.BinaryAuthHandler.java

/**
 * A SASL Client which communicates through the memcache binary protocol.
 *
 * @author Michael Nitschinger
 * @since 1.0
 */

From source file com.couchbase.client.core.endpoint.binary.BinarySaslClient.java

/**
 * A SASL Client which communicates through the memcache binary protocol.
 *
 * @author Michael Nitschinger
 * @since 1.0
 */

From source file com.couchbase.client.core.endpoint.dcp.DCPConnectionHandler.java

/**
 * DCP connection handler makes sure that all channels have DCP connection initialized.
 *
 * @author Sergey Avseyev
 * @since 1.2.6
 */

From source file com.couchbase.client.core.endpoint.kv.KeyValueAuthHandler.java

/**
 * A SASL Client which communicates through the memcache binary protocol.
 *
 * @author Michael Nitschinger
 * @since 1.0
 */

From source file com.couchbase.client.core.endpoint.kv.KeyValueFeatureHandler.java

/**
 * This handler negotiates the enabled features through the HELLO command.
 *
 * Like the SASL auth handler, this handler intercepts the original connect process to properly negotiate the
 * supported features with the server. Once the features are negotiated they are sent through custom events up the
 * pipeline and the handler removes itself.

From source file com.google.devtools.build.lib.remote.blobstore.http.AbstractHttpHandler.java

/** Common functionality shared by concrete classes. */
abstract class AbstractHttpHandler<T extends HttpObject> extends SimpleChannelInboundHandler<T>
        implements ChannelOutboundHandler {

    private final Credentials credentials;

From source file com.twitter.http2.HttpConnectionHandler.java

/**
 * Manages streams within an HTTP/2 connection.
 */
public class HttpConnectionHandler extends ByteToMessageDecoder
        implements HttpFrameDecoderDelegate, ChannelOutboundHandler {

From source file com.whizzosoftware.wzwave.channel.outbound.FrameQueueHandler.java

/**
 * Handler responsible for queueing data frames and writing them to the Z-Wave network when appropriate.
 *
 * @author Dan Noguerol
 */
public class FrameQueueHandler extends ChannelHandlerAdapter

From source file com.xiovr.unibot.bot.network.ConnectionEncoder.java

public interface ConnectionEncoder extends ChannelOutboundHandler {

}