List of usage examples for io.netty.channel ChannelInboundHandlerAdapter subclass-usage
From source file com.whizzosoftware.wzwave.channel.inbound.ZWaveChannelInboundHandler.java
/** * Inbound handler for Z-Wave data frames. * * @author Dan Noguerol */ public class ZWaveChannelInboundHandler extends ChannelInboundHandlerAdapter {
From source file com.whizzosoftware.wzwave.channel.ZWaveChannelInboundHandler.java
/** * Inbound handler for Z-Wave data frames. * * @author Dan Noguerol */ public class ZWaveChannelInboundHandler extends ChannelInboundHandlerAdapter {
From source file com.whizzosoftware.wzwave.channel.ZWaveDataFrameTransactionInboundHandler.java
/**
* Handler for all Z-Wave frame transactions. Responsible for tracking the state of the current transaction
* including successes, failures and timeouts.
*
* @author Dan Noguerol
*/
From source file com.witjit.game.client.EchoClientHandler.java
/** * Handler implementation for the echo client. It initiates the ping-pong * traffic between the echo client and server by sending the first message to * the server. */ public class EchoClientHandler extends ChannelInboundHandlerAdapter {
From source file com.witjit.game.server.communication.handler.ClientDispatchHandler.java
/** * * @author Administrator */ public class ClientDispatchHandler extends ChannelInboundHandlerAdapter {
From source file com.witjit.game.server.communication.netty.handler.AbstractMessageInHandler.java
/** * * @author Administrator */ public abstract class AbstractMessageInHandler<M> extends ChannelInboundHandlerAdapter {
From source file com.witjit.game.server.communication.netty.handler.NodeChannelInitializer.java
/** * * @author Administrator */ @Sharable public class NodeChannelInitializer<M> extends ChannelInboundHandlerAdapter {
From source file com.wq.wqchat.client.connect.ConnClientChannelHandler.java
public final class ConnClientChannelHandler extends ChannelInboundHandlerAdapter { private static final Logger LOGGER = LoggerFactory.getLogger(ConnClientChannelHandler.class); private static final Timer HASHED_WHEEL_TIMER = new HashedWheelTimer( new NamedPoolThreadFactory(ThreadNames.T_CONN_TIMER)); public static final AttributeKey<ClientConfig> CONFIG_KEY = AttributeKey.newInstance("clientConfig"); public static final TestStatistics STATISTICS = new TestStatistics();
From source file com.wq.wqchat.client.gateway.handler.GatewayClientChannelHandler.java
@ChannelHandler.Sharable public final class GatewayClientChannelHandler extends ChannelInboundHandlerAdapter { private static final Logger LOGGER = LoggerFactory.getLogger(GatewayClientChannelHandler.class); private final ConnectionManager connectionManager;
From source file com.wq.wqchat.core.server.ServerChannelHandler.java
@ChannelHandler.Sharable public final class ServerChannelHandler extends ChannelInboundHandlerAdapter { private static final Logger LOGGER = LoggerFactory.getLogger(ServerChannelHandler.class); private static final long profile_slowly_limit = CC.mp.monitor.profile_slowly_duration.toMillis();