List of usage examples for io.netty.channel ChannelInboundHandlerAdapter subclass-usage
From source file com.avanza.astrix.netty.server.NettyRemotingServerHandler.java
public class NettyRemotingServerHandler extends ChannelInboundHandlerAdapter { private AstrixServiceActivator serviceActivator; public NettyRemotingServerHandler(AstrixServiceActivator serviceActivator) { this.serviceActivator = serviceActivator;
From source file com.baidu.jprotobuf.pbrpc.management.HttpServerInboundHandler.java
/**
* HTTP server handler for all request process.
*
*
* @author xiemalin
* @since 3.1.0
From source file com.baidu.rigel.biplatform.tesseract.netty.AbstractChannelInboundHandler.java
/**
* AbstractChannelInboundHandler ?hanlder
*
* @author lijin
*
*/
From source file com.barchart.netty.client.pipeline.CapabilitiesRequest.java
/**
* Channel handler that immediately writes a Capabilities message to the server
* on connect, and expects a Capabilities message response.
*
* This handler removes itself after sending the request.
*/
From source file com.barchart.netty.common.pipeline.MessageFlowHandler.java
/**
* A Flow state machine that can function as a message "dam" while a Flow
* machine is running on this channel. This allows you to perform complex
* interactions with the remote host on connect (negotiating encryption,
* websocket handshaking, authentication, etc) while blocking downstream
* handlers from sending and receiving messages that may interrupt the process.
From source file com.barchart.netty.common.pipeline.WebSocketConnectedNotifier.java
/** * Blocks downstream channelActive() notifications until a websocket handshake * completes. */ public class WebSocketConnectedNotifier extends ChannelInboundHandlerAdapter {
From source file com.barchart.netty.server.pipeline.CapabilitiesHandler.java
/** * Channel handler that immediately writes a Capabilities message to the client * on connect. */ public class CapabilitiesHandler extends ChannelInboundHandlerAdapter implements VersionAware {
From source file com.barchart.netty.server.pipeline.NegotiationHandler.java
/** * Channel handler that negotiates initial connection properties with the client, including setting protocol versions * and channel encryption (TLS). */ public class NegotiationHandler extends ChannelInboundHandlerAdapter implements VersionAware, SecureAware {
From source file com.base.research.socket.netty.ClientHandler.java
/** * Handles a client-side channel. */ public class ClientHandler extends ChannelInboundHandlerAdapter { @Override
From source file com.base.research.socket.netty.ServerHandler.java
/** * Handles a server-side channel. */ public class ServerHandler extends ChannelInboundHandlerAdapter { // (1) @Override