List of usage examples for io.netty.channel ChannelOutboundHandlerAdapter subclass-usage
From source file reactor.io.net.netty.NettyNetChannelOutboundHandler.java
/** * @author Jon Brisbin */ public class NettyNetChannelOutboundHandler extends ChannelOutboundHandlerAdapter { @SuppressWarnings("unchecked") @Override
From source file reactor.net.netty.NettyNetChannelOutboundHandler.java
/** * @author Jon Brisbin */ public class NettyNetChannelOutboundHandler extends ChannelOutboundHandlerAdapter { @SuppressWarnings("unchecked") @Override
From source file sas.systems.imflux.network.ControlPacketEncoder.java
/**
* Encodes a {@link ControlPacket} or a {@link CompoundControlPacket} to a {@link ByteBuf}. It is than passed along
* the {@link ChannelPipeline}.
*
* @author <a href="http://bruno.biasedbit.com/">Bruno de Carvalho</a>
* @author <a href="https://github.com/CodeLionX">CodeLionX</a>
From source file whitespell.net.websockets.socketio.handler.ResourceHandler.java
@Sharable public class ResourceHandler extends ChannelOutboundHandlerAdapter { public static final String HTTP_DATE_FORMAT = "EEE, dd MMM yyyy HH:mm:ss zzz"; public static final String HTTP_DATE_GMT_TIMEZONE = "GMT"; public static final int HTTP_CACHE_SECONDS = 60;
From source file whitespell.net.websockets.socketio.SocketIOEncoder.java
@Sharable public class SocketIOEncoder extends ChannelOutboundHandlerAdapter implements Disconnectable { class XHRClientEntry { // works faster than locking
From source file zixin.socket.handler.EncoderHandler.java
@Sharable public class EncoderHandler extends ChannelOutboundHandlerAdapter { private static final byte[] OK = "ok".getBytes(CharsetUtil.UTF_8); public static final AttributeKey<String> ORIGIN = AttributeKey.valueOf("origin");