List of usage examples for io.netty.channel ChannelInboundHandlerAdapter subclass-usage
From source file com.hop.hhxx.example.proxy.HexDumpProxyBackendHandler.java
public class HexDumpProxyBackendHandler extends ChannelInboundHandlerAdapter { private final Channel inboundChannel; public HexDumpProxyBackendHandler(Channel inboundChannel) { this.inboundChannel = inboundChannel;
From source file com.hop.hhxx.example.proxy.HexDumpProxyFrontendHandler.java
public class HexDumpProxyFrontendHandler extends ChannelInboundHandlerAdapter { private final String remoteHost; private final int remotePort; private volatile Channel outboundChannel;
From source file com.hop.hhxx.example.sctp.SctpEchoClientHandler.java
/** * Handler implementation for the SCTP echo client. It initiates the ping-pong * traffic between the echo client and server by sending the first message to * the server. */ public class SctpEchoClientHandler extends ChannelInboundHandlerAdapter {
From source file com.hop.hhxx.example.sctp.SctpEchoServerHandler.java
/** * Handler implementation for the SCTP echo server. */ @Sharable public class SctpEchoServerHandler extends ChannelInboundHandlerAdapter {
From source file com.hop.hhxx.example.socksproxy.DirectClientHandler.java
public final class DirectClientHandler extends ChannelInboundHandlerAdapter { private final Promise<Channel> promise; public DirectClientHandler(Promise<Channel> promise) { this.promise = promise;
From source file com.hop.hhxx.example.socksproxy.RelayHandler.java
public final class RelayHandler extends ChannelInboundHandlerAdapter { private final Channel relayChannel; public RelayHandler(Channel relayChannel) { this.relayChannel = relayChannel;
From source file com.hop.hhxx.example.udt.echo.bytes.ByteEchoServerHandler.java
/** * Handler implementation for the echo server. */ @Sharable public class ByteEchoServerHandler extends ChannelInboundHandlerAdapter {
From source file com.hop.hhxx.example.udt.echo.message.MsgEchoServerHandler.java
/** * Handler implementation for the echo server. */ @Sharable public class MsgEchoServerHandler extends ChannelInboundHandlerAdapter {
From source file com.hzmsc.scada.Jmtis.server.HttpHelloWorldServerHandler.java
public class HttpHelloWorldServerHandler extends ChannelInboundHandlerAdapter { private static final byte[] CONTENT = { 'H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd' }; private static final AsciiString CONTENT_TYPE = new AsciiString("Content-Type"); private static final AsciiString CONTENT_LENGTH = new AsciiString("Content-Length"); private static final AsciiString CONNECTION = new AsciiString("Connection");
From source file com.ibasco.agql.protocols.valve.source.query.handlers.SourceQueryPacketAssembler.java
/** * <p>Responsible for verifying and assembling datagram packets</p> */ public class SourceQueryPacketAssembler extends ChannelInboundHandlerAdapter { private static final Logger log = LoggerFactory.getLogger(SourceQueryPacketAssembler.class);