Interface IBusOptions
Stores the internal bus configuration (subscribers, etc.).
Namespace: Silverback.Messaging.Configuration
Assembly: Silverback.Core.dll
Syntax
public interface IBusOptions
Properties
| Improve this doc View sourceMessageTypes
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
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
IList<ISubscription> Subscriptions { get; }
Property Value
Type | Description |
---|---|
IList<ISubscription> |