List of usage examples for io.netty.channel ChannelHandlerAdapter subclass-usage
From source file nettyprivateprotocolclientdemo.HeartBeatReqHandler.java
/** * * @author allen */ public class HeartBeatReqHandler extends ChannelHandlerAdapter { private volatile ScheduledFuture<?> heartBeat;
From source file nettyprivateprotocolclientdemo.LoginAuthReqHandler.java
/** * * @author allen */ public class LoginAuthReqHandler extends ChannelHandlerAdapter {
From source file nettyprivateprotocolserverdemo.HeartBeatRespHandler.java
/** * * @author allen */ public class HeartBeatRespHandler extends ChannelHandlerAdapter {
From source file nettyprivateprotocolserverdemo.LoginAuthRespHandler.java
/** * * @author allen */ public class LoginAuthRespHandler extends ChannelHandlerAdapter {
From source file nettytimeclientdemo.TimeClientHandler.java
/** * * @author allen */ public class TimeClientHandler extends ChannelHandlerAdapter {
From source file nettyTimeServerDemo.TimeServerHandler.java
/** * * @author allen */ public class TimeServerHandler extends ChannelHandlerAdapter {
From source file org.acmsl.katas.antlr4netty.InterpreterServerChannelHandler.java
/**
* Gets spawned on incoming connections and calculates the input.
* @author <a href="mailto:queryj@acm-sl.org">Jose San Leandro</a>
* @since 3.0
* Created: 2014/07/17 07:22
*/
From source file org.acmsl.queryj.debugging.netty.NettyServerChannelHandler.java
/**
* {@link io.netty.channel.ChannelHandlerAdapter} implementation to accept debug commands.
* @author <a href="mailto:queryj@acm-sl.org">Jose San Leandro</a>
* @since 3.0
* Created: 2014/06/28 20:47
*/
From source file org.anhonesteffort.chnlbrkr.BrkrList.java
@ChannelHandler.Sharable public class BrkrList extends ChannelHandlerAdapter { private final HostId.Reader hostId; private final Optional<ExpiringRedisSet> expiringSet;
From source file org.anhonesteffort.chnlbrkr.chnlzr.IdleChnlzrConnection.java
public class IdleChnlzrConnection extends ChannelHandlerAdapter { private static final Timer timer = new Timer(true); private final SettableFuture<IdleChnlzrConnection> future; private final String id;