Interface IConsumerCollection
Holds a reference to all the configured IConsumer.
Namespace: Silverback.Messaging.Broker
Assembly: Silverback.Integration.dll
Syntax
public interface IConsumerCollection : IReadOnlyCollection<IConsumer>, IEnumerable<IConsumer>, IEnumerable
Properties
this[string]
Gets the consumer with the specified name.
Declaration
IConsumer this[string name] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| string | name | The consumer name. |
Property Value
| Type | Description |
|---|---|
| IConsumer | The IConsumer with the specified name. |