List of usage examples for io.netty.channel ChannelInboundHandler interface-usage
From source file c5db.client.MessageHandler.java
public interface MessageHandler extends ChannelHandler, ChannelInboundHandler {
ListenableFuture<Response> call(Call request, Channel channel);
ListenableFuture<Response> buffer(Call request, Channel channel);
From source file com.alibaba.dubbo.remoting.transport.netty4.NettyHandler.java
/**
* NettyHandler
*
* @author william.liangf
* @author wuwen
*/
From source file com.eucalyptus.util.async.RequestHandler.java
public interface RequestHandler<Q extends BaseMessage, R extends BaseMessage> extends ChannelInboundHandler { boolean fire(ServiceConfiguration serviceConfig, Q request); }
From source file com.linecorp.armeria.client.http.Http1ResponseDecoder.java
final class Http1ResponseDecoder extends HttpResponseDecoder implements ChannelInboundHandler { private static final Logger logger = LoggerFactory.getLogger(Http1ResponseDecoder.class); private enum State { NEED_HEADERS, NEED_INFORMATIONAL_DATA, NEED_DATA_OR_TRAILING_HEADERS, DISCARD
From source file com.linecorp.armeria.client.Http1ResponseDecoder.java
final class Http1ResponseDecoder extends HttpResponseDecoder implements ChannelInboundHandler { private static final Logger logger = LoggerFactory.getLogger(Http1ResponseDecoder.class); private enum State { NEED_HEADERS, NEED_INFORMATIONAL_DATA, NEED_DATA_OR_TRAILING_HEADERS, DISCARD
From source file com.myftpserver.interfaces.SendHandler.java
/** * * @author SITO3 * */ public abstract class SendHandler implements ChannelInboundHandler, ChannelFutureListener {
From source file com.whizzosoftware.hobson.ssdp.SSDPInboundHandler.java
/**
* A handler for inbound SSDP packets. It delegates the appropriate action to the SSDPContext object that it
* is provided.
*
* @author Dan Noguerol
*/
From source file com.whizzosoftware.wzwave.channel.outbound.FrameQueueHandler.java
/** * Handler responsible for queueing data frames and writing them to the Z-Wave network when appropriate. * * @author Dan Noguerol */ public class FrameQueueHandler extends ChannelHandlerAdapter
From source file com.xiovr.unibot.bot.network.ClientConnectionHandler.java
public interface ClientConnectionHandler extends ChannelInboundHandler {
}
From source file com.xiovr.unibot.bot.network.ConnectionDecoder.java
public interface ConnectionDecoder extends ChannelInboundHandler {
}