Class BusOptions
Stores the message bus configuration (subscribers, etc.).
Inherited Members
Namespace: Silverback.Messaging.Configuration
Assembly: Silverback.Core.dll
Syntax
public class BusOptions
Constructors
BusOptions()
Stores the message bus configuration (subscribers, etc.).
Declaration
public BusOptions()
Properties
MessageTypes
Gets the collection of handled message types. These types will be recognized as messages and thus automatically republished when returned by a subscribed method.
Declaration
public IList<Type> MessageTypes { get; }
Property Value
| Type | Description |
|---|---|
| IList<Type> |
Subscriptions
Gets the collection of ISubscription. A single subscription can resolve to multiple subscribed methods.
Declaration
public IList<ISubscription> Subscriptions { get; }
Property Value
| Type | Description |
|---|---|
| IList<ISubscription> |