Example #1
0
 public void InvokeChannelReadComplete(IChannelHandlerContext ctx)
 {
     ChannelHandlerInvokerUtil.InvokeChannelReadCompleteNow(ctx);
 }
Example #2
0
 public void InvokeChannelWritabilityChanged(IChannelHandlerContext ctx)
 {
     ChannelHandlerInvokerUtil.InvokeChannelWritabilityChangedNow(ctx);
 }
Example #3
0
 public void InvokeUserEventTriggered(IChannelHandlerContext ctx, object evt)
 {
     ChannelHandlerInvokerUtil.InvokeUserEventTriggeredNow(ctx, evt);
 }
Example #4
0
 public void InvokeChannelRead(IChannelHandlerContext ctx, object msg)
 {
     ChannelHandlerInvokerUtil.InvokeChannelReadNow(ctx, msg);
 }
Example #5
0
 public void InvokeRead(IChannelHandlerContext ctx)
 {
     ChannelHandlerInvokerUtil.InvokeReadNow(ctx);
 }
Example #6
0
 public Task InvokeConnectAsync(IChannelHandlerContext ctx, EndPoint remoteAddress, EndPoint localAddress) => ChannelHandlerInvokerUtil.InvokeConnectNowAsync(ctx, remoteAddress, localAddress);
Example #7
0
 public void InvokeFlush(IChannelHandlerContext ctx)
 {
     ChannelHandlerInvokerUtil.InvokeFlushNow(ctx);
 }
Example #8
0
 public Task InvokeCloseAsync(IChannelHandlerContext ctx)
 {
     return(ChannelHandlerInvokerUtil.InvokeCloseAsyncNow(ctx));
 }
Example #9
0
 public Task InvokeWriteAsync(IChannelHandlerContext ctx, object msg) => ChannelHandlerInvokerUtil.InvokeWriteNowAsync(ctx, msg);
Example #10
0
 public void InvokeChannelActive(IChannelHandlerContext ctx) => ChannelHandlerInvokerUtil.InvokeChannelActiveNow(ctx);
Example #11
0
 public Task InvokeDeregisterAsync(IChannelHandlerContext ctx) => ChannelHandlerInvokerUtil.InvokeDeregisterNowAsync(ctx);
Example #12
0
 public Task InvokeCloseAsync(IChannelHandlerContext ctx) => ChannelHandlerInvokerUtil.InvokeCloseNowAsync(ctx);
Example #13
0
 public Task InvokeDisconnectAsync(IChannelHandlerContext ctx) => ChannelHandlerInvokerUtil.InvokeDisconnectNowAsync(ctx);
Example #14
0
 public Task InvokeBindAsync(IChannelHandlerContext ctx, EndPoint localAddress)
 {
     return(ChannelHandlerInvokerUtil.InvokeBindAsyncNow(ctx, localAddress));
 }
Example #15
0
 public void InvokeChannelUnregistered(IChannelHandlerContext ctx)
 {
     ChannelHandlerInvokerUtil.InvokeChannelUnregisteredNow(ctx);
 }
Example #16
0
 public Task InvokeConnectAsync(IChannelHandlerContext ctx, EndPoint remoteAddress, EndPoint localAddress)
 {
     return(ChannelHandlerInvokerUtil.InvokeConnectAsyncNow(ctx, remoteAddress, localAddress));
 }
Example #17
0
 public void InvokeChannelInactive(IChannelHandlerContext ctx)
 {
     ChannelHandlerInvokerUtil.InvokeChannelInactiveNow(ctx);
 }
Example #18
0
 public Task InvokeDeregisterAsync(IChannelHandlerContext ctx)
 {
     return(ChannelHandlerInvokerUtil.InvokeDeregisterAsyncNow(ctx));
 }
Example #19
0
 public void InvokeExceptionCaught(IChannelHandlerContext ctx, Exception cause)
 {
     ChannelHandlerInvokerUtil.InvokeExceptionCaughtNow(ctx, cause);
 }
Example #20
0
 public Task InvokeWriteAsync(IChannelHandlerContext ctx, object msg)
 {
     return(ChannelHandlerInvokerUtil.InvokeWriteAsyncNow(ctx, msg));
 }
Example #21
0
 public Task InvokeBindAsync(IChannelHandlerContext ctx, EndPoint localAddress) => ChannelHandlerInvokerUtil.InvokeBindNowAsync(ctx, localAddress);