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 cloudeventbus.codec.Codec.java

/**
 * @author Mike Heath <elcapo@gmail.com>
 */
public class Codec extends CombinedChannelDuplexHandler
        implements ChannelInboundByteHandler, ChannelOutboundMessageHandler<Frame> {

From source file com.basho.riak.client.core.netty.RiakPbMessageCodec.java

/**
 *
 * @author Brian Roach <roach at basho dot com>
 * @since 2.0
 */
public class RiakPbMessageCodec extends CombinedChannelDuplexHandler

From source file com.couchbase.client.core.endpoint.GenericEndpointHandler.java

/**
 * Generic handler which is responsible for general request/response management of the pipeline.
 *
 * @author Michael Nitschinger
 * @since 1.0
 */

From source file com.couchbase.client.io.QueryCodec.java

/**
 * The {@link QueryCodec} provides encoding and decoding of Queries.
 *
 * The purpose of the codec is to enable both the {@link QueryEncoder} and the
 * {@link QueryDecoder} at the same time and providing a Queue through which both
 * share request/response events.

From source file com.creamsugardonut.CustomHttpServerCodec.java

/**
 * Forked from HttpServerCodec. This disables chunked-encoding support since it isn't necessary for Http Streaming
 * Server.
 *
 */
public final class CustomHttpServerCodec

From source file com.linecorp.armeria.common.http.Http1ClientCodec.java

/**
 * A combination of {@link HttpRequestEncoder} and {@link HttpResponseDecoder}
 * which enables easier client side HTTP implementation. {@link Http1ClientCodec}
 * provides additional state management for <tt>HEAD</tt> and <tt>CONNECT</tt>
 * requests, which {@link HttpResponseDecoder} lacks.  Please refer to
 * {@link HttpResponseDecoder} to learn what additional state management needs

From source file com.linecorp.armeria.internal.http.Http1ClientCodec.java

/**
 * A combination of {@link HttpRequestEncoder} and {@link HttpResponseDecoder}
 * which enables easier client side HTTP implementation. {@link Http1ClientCodec}
 * provides additional state management for <tt>HEAD</tt> and <tt>CONNECT</tt>
 * requests, which {@link HttpResponseDecoder} lacks.  Please refer to
 * {@link HttpResponseDecoder} to learn what additional state management needs

From source file com.linecorp.armeria.internal.Http1ClientCodec.java

/**
 * A combination of {@link HttpRequestEncoder} and {@link HttpResponseDecoder}
 * which enables easier client side HTTP implementation. {@link Http1ClientCodec}
 * provides additional state management for <tt>HEAD</tt> and <tt>CONNECT</tt>
 * requests, which {@link HttpResponseDecoder} lacks.  Please refer to
 * {@link HttpResponseDecoder} to learn what additional state management needs

From source file net.epsilony.utils.codec.modbus.ModbusMasterCodec.java

/**
 * @author <a href="mailto:epsilony@epsilony.net">Man YUAN</a>
 *
 */
public class ModbusMasterCodec
        extends CombinedChannelDuplexHandler<ModbusMasterResponseDecoder, ModbusMasterRequestEncoder> {

From source file net.epsilony.utils.codec.modbus.ModbusSlaveCodec.java

/**
 * @author <a href="mailto:epsilony@epsilony.net">Man YUAN</a>
 *
 */
public class ModbusSlaveCodec
        extends CombinedChannelDuplexHandler<ModbusSlaveRequestDecoder, ModbusSlaveResponseEncoder> {