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

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

Introduction

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

Usage

From source file alluxio.client.netty.IdleWriteHandler.java

/**
 * Sends a keep-alive to the server whenever the channel has been idle for a period of time.
 */
public class IdleWriteHandler extends ChannelDuplexHandler {
    /**
     * Creates a new idle write handler.

From source file alluxio.network.netty.IdleWriteHandler.java

/**
 * Sends a keep-alive to the server whenever the channel has been idle for a period of time.
 */
public class IdleWriteHandler extends ChannelDuplexHandler {
    /**
     * Creates a new idle write handler.

From source file alluxio.worker.netty.IdleReadHandler.java

/**
 * Closes the channel if it has been idle for too long.
 */
public class IdleReadHandler extends ChannelDuplexHandler {
    /**
     * Creates a new idle read handler.

From source file at.yawk.dbus.protocol.auth.CommandCodec.java

/**
 * @author yawkat
 */
@Slf4j
public class CommandCodec extends ChannelDuplexHandler {
    /*

From source file at.yawk.dbus.protocol.auth.DirectionValidatorAdapter.java

/**
 * @author yawkat
 */
@RequiredArgsConstructor
class DirectionValidatorAdapter extends ChannelDuplexHandler {
    private final AuthDirection inbound;

From source file at.yawk.dbus.protocol.codec.ByteCollector.java

/**
 * @author yawkat
 */
@Slf4j
class ByteCollector extends ChannelDuplexHandler {
    private ByteBuf buffer = null;

From source file at.yawk.dbus.protocol.codec.DbusMainProtocol.java

/**
 * @author yawkat
 */
public class DbusMainProtocol extends ChannelDuplexHandler {
    private final MessageConsumer consumer;

From source file at.yawk.dbus.protocol.LoggingInboundAdapter.java

/**
 * Debug adapter that logs received and sent data to the trace log.
 *
 * @author yawkat
 */
@Slf4j

From source file cf.dropsonde.metron.ControlMessageHandler.java

/**
 * @author Mike Heath
 */
class ControlMessageHandler extends ChannelDuplexHandler {

    private final Wire wire = new Wire();

From source file com.addthis.hydra.query.aggregate.MeshSourceAggregator.java

public class MeshSourceAggregator extends ChannelDuplexHandler implements ChannelFutureListener {

    static final Logger log = LoggerFactory.getLogger(MeshSourceAggregator.class);

    final QueryTaskSource[] taskSources;
    final int totalTasks;