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