// end stub helpers

		public IRabbitChannel CreateChannel(ChannelOptions options = null)
		{
			EnsureNotDisposed();

			var channel = new StubRabbitChannel(options);
			_channelCreated.Add(channel);
			return channel;
		}
示例#2
0
        // end stub helpers

        public IRabbitChannel CreateChannel(ChannelOptions options = null)
        {
            EnsureNotDisposed();

            var channel = new StubRabbitChannel(options);

            _channelCreated.Add(channel);
            return(channel);
        }