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 qunar.tc.qmq.netty.client.NettyConnectManageHandler.java

/**
 * @author yiqun.fan create on 17-8-29.
 */
@ChannelHandler.Sharable
public class NettyConnectManageHandler extends ChannelDuplexHandler {
    private static final Logger LOGGER = LoggerFactory.getLogger(NettyConnectManageHandler.class);

From source file ratpack.http.client.internal.IdleTimeoutHandler.java

@ChannelHandler.Sharable
public class IdleTimeoutHandler extends ChannelDuplexHandler {

    static final ChannelInboundHandler INSTANCE = new IdleTimeoutHandler();

    private IdleTimeoutHandler() {

From source file reactor.io.net.impl.netty.NettyChannelHandlerBridge.java

/**
 * Netty {@link io.netty.channel.ChannelInboundHandler} implementation that passes data to a Reactor {@link
 * reactor.io.net.ChannelStream}.
 *
 * @author Jon Brisbin
 * @author Stephane Maldini

From source file reactor.ipc.netty.channel.ChannelOperationsHandler.java

/**
 * Netty {@link io.netty.channel.ChannelDuplexHandler} implementation that bridge data
 * via an IPC {@link NettyOutbound}
 *
 * @author Stephane Maldini
 */

From source file reactor.ipc.netty.channel.NettyChannelHandler.java

/**
 * Netty {@link io.netty.channel.ChannelInboundHandler} implementation that bridge data
 * via an IPC {@link NettyOutbound} and {@link NettyInbound}
 *
 * @author Stephane Maldini
 */

From source file reactor.ipc.netty.http.server.CompressionHandler.java

/**
 * @author mostroverkhov
 */
final class CompressionHandler extends ChannelDuplexHandler {

    final int minResponseSize;

From source file reactor.ipc.netty.http.server.HttpServerHandler.java

/**
 * Replace {@link io.netty.handler.codec.http.HttpServerKeepAliveHandler} with extra
 * handler management.
 */
final class HttpServerHandler extends ChannelDuplexHandler implements Runnable {

From source file reactor.ipc.netty.tcp.SslReadHandler.java

/**
 * @author Stephane Maldini
 */
final class SslReadHandler extends ChannelDuplexHandler {

    final MonoSink<?> sink;

From source file rxweb.engine.server.netty.NettyServerCodecHandlerAdapter.java

/**
 * Conversion between Netty types ({@link HttpRequest}, {@link HttpResponse}, {@link HttpContent} and {@link LastHttpContent})
 * and Spring RxWeb types ({@link NettyServerResponseAdapter}, {@link NettyServerRequestAdapter} and {@link ByteBuffer}).
 *
 * @author Sebastien Deleuze
 */

From source file sailfish.remoting.handler.HeartbeatChannelHandler.java

/**
 * @author spccold
 * @version $Id: HeartbeatHandler.java, v 0.1 20161123 ?9:21:35 spccold Exp $
 */
@ChannelHandler.Sharable
public class HeartbeatChannelHandler extends ChannelDuplexHandler {