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