Class SubscriptionOptions
The subscription options such as filters and parallelism settings.
Inherited Members
Namespace: Silverback.Messaging.Subscribers.Subscriptions
Assembly: Silverback.Core.dll
Syntax
public class SubscriptionOptions
Properties
| Improve this doc View sourceExclusive
Gets or sets a value indicating whether the method(s) can be executed concurrently to other methods
handling the same message. The default value is true
(the method(s) will be executed
sequentially to other subscribers).
Declaration
public bool Exclusive { get; set; }
Property Value
Type | Description |
---|---|
bool |
Filters
Gets or sets the filters to be applied.
Declaration
public IReadOnlyCollection<IMessageFilter> Filters { get; set; }
Property Value
Type | Description |
---|---|
IReadOnlyCollection<IMessageFilter> |