public Task <IChannel> CreateChannelWithPublishConfirmation(ChannelOptions options, int maxunconfirmedMessages = 100) { return(InternalCreateChannel(options, null, maxunconfirmedMessages, withPubConfirm: true)); }
public Task <IChannel> CreateChannel(ChannelOptions options) { return(InternalCreateChannel(options, null, withPubConfirm: false)); }