List of usage examples for io.netty.channel ChannelHandlerAdapter subclass-usage
From source file com.changxx.phei.netty.protocol.netty.client.HeartBeatReqHandler.java
/** * @author Lilinfeng * @version 1.0 */ public class HeartBeatReqHandler extends ChannelHandlerAdapter {
From source file com.changxx.phei.netty.protocol.netty.client.LoginAuthReqHandler.java
/** * @author Lilinfeng * @version 1.0 */ public class LoginAuthReqHandler extends ChannelHandlerAdapter {
From source file com.changxx.phei.netty.protocol.netty.server.HeartBeatRespHandler.java
/** * @author Lilinfeng * @version 1.0 */ public class HeartBeatRespHandler extends ChannelHandlerAdapter { @Override
From source file com.changxx.phei.netty.protocol.netty.server.LoginAuthRespHandler.java
/** * @author Lilinfeng * @version 1.0 */ public class LoginAuthRespHandler extends ChannelHandlerAdapter {
From source file com.chthhk.zk.zkclient.balance.client.ClientHandler.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 ClientHandler extends ChannelHandlerAdapter {
From source file com.codebullets.external.party.simulator.connections.websocket.outbound.KeepAliveHandler.java
/** * Responsible to keep the connection alive using ping messages and starts reconnect * in case the connection goes down. */ public class KeepAliveHandler extends ChannelHandlerAdapter { private static final Logger LOG = LoggerFactory.getLogger(KeepAliveHandler.class);
From source file com.company.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 ChannelHandlerAdapter {
From source file com.company.EchoServerHandler.java
/** * Handler implementation for the echo server. */ @Sharable public class EchoServerHandler extends ChannelHandlerAdapter {
From source file com.datatorrent.netlet.benchmark.netty.BenchmarkTcpClient.java
/**
* <p>Netty Coral Block based Benchmark Test Client</p>
* see: <a href="http://www.coralblocks.com/index.php/2014/04/coralreactor-vs-netty-performance-comparison">http://www.coralblocks.com/index.php/2014/04/coralreactor-vs-netty-performance-comparison</a>,
* <a href="http://stackoverflow.com/questions/23839437/what-are-the-netty-alternatives-for-high-performance-networking">http://stackoverflow.com/questions/23839437/what-are-the-netty-alternatives-for-high-performance-networking</a>,
* <a href="http://www.coralblocks.com/NettyBench.zip">http://www.coralblocks.com/NettyBench.zip</a> and
* <a href="https://groups.google.com/forum/#!topic/mechanical-sympathy/fhbyMnnxmaA">https://groups.google.com/forum/#!topic/mechanical-sympathy/fhbyMnnxmaA</a>
From source file com.datatorrent.netlet.benchmark.netty.EchoTcpServer.java
/**
* <p>Netty Coral Block based Benchmark Echo Test Server</p>
* see: <a href="http://www.coralblocks.com/index.php/2014/04/coralreactor-vs-netty-performance-comparison">http://www.coralblocks.com/index.php/2014/04/coralreactor-vs-netty-performance-comparison</a>,
* <a href="http://stackoverflow.com/questions/23839437/what-are-the-netty-alternatives-for-high-performance-networking">http://stackoverflow.com/questions/23839437/what-are-the-netty-alternatives-for-high-performance-networking</a>,
* <a href="http://www.coralblocks.com/NettyBench.zip">http://www.coralblocks.com/NettyBench.zip</a> and
* <a href="https://groups.google.com/forum/#!topic/mechanical-sympathy/fhbyMnnxmaA">https://groups.google.com/forum/#!topic/mechanical-sympathy/fhbyMnnxmaA</a>