List of usage examples for io.netty.channel ChannelHandlerAdapter subclass-usage
From source file org.jboss.aerogear.simplepush.server.netty.UserAgentReaperHandler.java
/**
* UserAgentReaperHandler is responsible for starting a single scheduled job
* that will clean up inactive user agents.
*
* @see UserAgentReaper
*/
From source file org.jboss.aerogear.sync.server.netty.GcmHandler.java
public class GcmHandler<T, S extends Edit<? extends Diff>> extends ChannelHandlerAdapter { private static final Logger LOGGER = LoggerFactory.getLogger(GcmHandler.class); private final StandaloneConfig syncConfig; private final ServerSyncEngine<T, S> syncEngine;
From source file org.l2junity.gameserver.network.telnet.TelnetServerHandler.java
/** * @author UnAfraid */ @Sharable public class TelnetServerHandler extends ChannelHandlerAdapter { private static final Pattern COMMAND_ARGS_PATTERN = Pattern.compile("\"([^\"]*)\"|([^\\s]+)");
From source file org.lanternpowered.server.network.pipeline.NoopHandler.java
@ChannelHandler.Sharable public final class NoopHandler extends ChannelHandlerAdapter { public static final NoopHandler INSTANCE = new NoopHandler(); }
From source file org.nexxy.http.reverseproxy.HttpReverseProxyServerHandler.java
public class HttpReverseProxyServerHandler extends ChannelHandlerAdapter { @Override public void channelReadComplete(ChannelHandlerContext ctx) { ctx.flush(); }
From source file org.opendaylight.groupbasedpolicy.jsonrpc.ExceptionHandler.java
public class ExceptionHandler extends ChannelHandlerAdapter { @Override public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { if ((cause instanceof InvalidEncodingException) || (cause instanceof TooLongFrameException)) {
From source file org.opendaylight.ovsdb.lib.jsonrpc.ExceptionHandler.java
public class ExceptionHandler extends ChannelHandlerAdapter { @Override public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception { if ((cause instanceof InvalidEncodingException) || (cause instanceof TooLongFrameException)) { ctx.channel().disconnect();
From source file org.poweredrails.rails.net.packet.NoopHandler.java
public class NoopHandler extends ChannelHandlerAdapter {
}
From source file org.quartzpowered.network.pipeline.NoopHandler.java
@Singleton @ChannelHandler.Sharable public final class NoopHandler extends ChannelHandlerAdapter { }
From source file org.royaldev.enterprise.proxy.ProxyBackendHandler.java
public class ProxyBackendHandler extends ChannelHandlerAdapter { private final Channel inboundChannel; public ProxyBackendHandler(Channel inboundChannel) { this.inboundChannel = inboundChannel;