List of usage examples for io.netty.channel ChannelInboundHandlerAdapter subclass-usage
From source file com.gemstone.gemfire.internal.redis.ExecutionHandlerContext.java
/**
* This class extends {@link ChannelInboundHandlerAdapter} from Netty and it is
* the last part of the channel pipeline. The {@link ByteToCommandDecoder} forwards a
* {@link Command} to this class which executes it and sends the result back to the
* client. Additionally, all exception handling is done by this class.
* <p>
From source file com.github.ambry.rest.ConnectionStatsHandler.java
/** * Handler that tracks connection establishment statistics. */ @ChannelHandler.Sharable public class ConnectionStatsHandler extends ChannelInboundHandlerAdapter { private final NettyMetrics metrics;
From source file com.github.binlee1990.transformers.netty.examples.echo.EchoClientHandler.java
/** * Handler implementation for the echo client. It initiates the ping-pong * traffic between the echo client and server by sending the first message to * the server. */ public class EchoClientHandler extends ChannelInboundHandlerAdapter {
From source file com.github.binlee1990.transformers.netty.examples.echo.EchoServerHandler.java
/** * Handler implementation for the echo server. */ @Sharable public class EchoServerHandler extends ChannelInboundHandlerAdapter {
From source file com.github.herong.rpc.netty.protobuf.demo1.ProtobufClientHandler.java
/** * Handler implementation for the echo client. It initiates the ping-pong * traffic between the echo client and server by sending the first message to * the server. */ public class ProtobufClientHandler extends ChannelInboundHandlerAdapter {
From source file com.github.herong.rpc.netty.protobuf.demo1.ProtobufServerHandler.java
/** * Handler implementation for the echo server. */ @Sharable public class ProtobufServerHandler extends ChannelInboundHandlerAdapter {
From source file com.github.herong.rpc.netty.protobuf.demo2.Demo2ProtobufClientHandler.java
/** * Handler implementation for the echo client. It initiates the ping-pong * traffic between the echo client and server by sending the first message to * the server. */ public class Demo2ProtobufClientHandler extends ChannelInboundHandlerAdapter {
From source file com.github.herong.rpc.netty.protobuf.demo2.Demo2ProtobufServerHandler.java
/** * Handler implementation for the echo server. */ @Sharable public class Demo2ProtobufServerHandler extends ChannelInboundHandlerAdapter {
From source file com.github.herong.rpc.netty.protobuf.demo3.Demo3ProtobufClientHandler.java
/** * Handler implementation for the echo client. It initiates the ping-pong * traffic between the echo client and server by sending the first message to * the server. */ public class Demo3ProtobufClientHandler extends ChannelInboundHandlerAdapter {
From source file com.github.herong.rpc.netty.protobuf.demo3.Demo3ProtobufServerHandler.java
/** * Handler implementation for the echo server. */ @Sharable public class Demo3ProtobufServerHandler extends ChannelInboundHandlerAdapter {