Ejemplo n.º 1
0
 public Task <IChannel> CreateChannelWithPublishConfirmation(ChannelOptions options, int maxunconfirmedMessages = 100)
 {
     return(InternalCreateChannel(options, null, maxunconfirmedMessages, withPubConfirm: true));
 }
Ejemplo n.º 2
0
 public Task <IChannel> CreateChannel(ChannelOptions options)
 {
     return(InternalCreateChannel(options, null, withPubConfirm: false));
 }