System.Collections.Concurrent.ConcurrentBag.Add(RabbitMQ.Client.IModel)

Here are the examples of the csharp api class System.Collections.Concurrent.ConcurrentBag.Add(RabbitMQ.Client.IModel) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: RawRabbit
Source File: ChannelFactory.cs
public virtual async Task<IModel> CreateChannelAsync(CancellationToken token = default(CancellationToken))
		{
			token.ThrowIfCancellationRequested();
			var connection = await GetConnectionAsync(token);
			var channel = connection.CreateModel();
			Channels.Add(channel);
			return channel;
		}