Example #1
0
 public Task DeregisterAsync() => DeregisterAsync(ChannelMatchers.All());
Example #2
0
 public Task NewCloseFuture() => NewCloseFuture(ChannelMatchers.All());
Example #3
0
 public Task DisconnectAsync() => DisconnectAsync(ChannelMatchers.All());
Example #4
0
 public Task CloseAsync() => CloseAsync(ChannelMatchers.All());
Example #5
0
 public IChannelGroup Flush() => Flush(ChannelMatchers.All());
Example #6
0
 public Task WriteAndFlushAsync(object message) => WriteAndFlushAsync(message, ChannelMatchers.All(), false);
Example #7
0
 public Task NewCloseFuture()
 {
     return(this.NewCloseFuture(ChannelMatchers.All()));
 }
Example #8
0
 public Task WriteAsync(object message)
 {
     return(this.WriteAsync(message, ChannelMatchers.All()));
 }
Example #9
0
 public Task DeregisterAsync()
 {
     return(this.DeregisterAsync(ChannelMatchers.All()));
 }
Example #10
0
 public Task CloseAsync()
 {
     return(this.CloseAsync(ChannelMatchers.All()));
 }
Example #11
0
 public Task DisconnectAsync()
 {
     return(this.DisconnectAsync(ChannelMatchers.All()));
 }
Example #12
0
 public IChannelGroup Flush()
 {
     return(this.Flush(ChannelMatchers.All()));
 }
 public Task WriteAndFlushAsync(object message) => this.WriteAndFlushAsync(message, ChannelMatchers.All());