Show / Hide Table of Contents

    Class SubscriptionOptions

    The subscription options such as filters and parallelism settings.

    Inheritance
    object
    SubscriptionOptions
    TypeSubscriptionOptions
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Silverback.Messaging.Subscribers.Subscriptions
    Assembly: Silverback.Core.dll
    Syntax
    public class SubscriptionOptions

    Properties

    | Improve this doc View source

    Exclusive

    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
    | Improve this doc View source

    Filters

    Gets or sets the filters to be applied.

    Declaration
    public IReadOnlyCollection<IMessageFilter> Filters { get; set; }
    Property Value
    Type Description
    IReadOnlyCollection<IMessageFilter>
    • Improve this doc
    • View source
    GitHub E-Mail
    ↑ Back to top © 2020 Sergio Aquilini