Class SubscriptionOptions
- Namespace
- Silverback.Messaging.Subscribers.Subscriptions
- Assembly
- Silverback.Core.dll
The subscription options such as filters and parallelism settings.
public abstract class SubscriptionOptions
- Inheritance
-
SubscriptionOptions
- Derived
- Inherited Members
Constructors
SubscriptionOptions()
protected SubscriptionOptions()
Properties
Filters
Gets or sets the filters to be applied.
public IReadOnlyCollection<IMessageFilter> Filters { get; set; }
Property Value
IsExclusive
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).
public bool IsExclusive { get; set; }