Class AzureEventBus<TMarker>
- Assembly
- Savvyio.Extensions.DependencyInjection.QueueStorage.dll
Provides a default implementation of the AzureEventBus class that is optimized for Dependency Injection.
public class AzureEventBus<TMarker> : AzureEventBus, IHealthCheckProvider<Uri>, IPublishSubscribeChannel<IIntegrationEvent, TMarker>, IPublishSubscribeChannel<IIntegrationEvent>, IPublisher<IIntegrationEvent, TMarker>, IPublisher<IIntegrationEvent>, ISubscriber<IIntegrationEvent, TMarker>, ISubscriber<IIntegrationEvent>, IDependencyInjectionMarker<TMarker>
Type Parameters
TMarker
- Inheritance
-
AzureEventBus<TMarker>
- Implements
-
IPublishSubscribeChannel<IIntegrationEvent, TMarker>IPublisher<IIntegrationEvent, TMarker>ISubscriber<IIntegrationEvent, TMarker>IDependencyInjectionMarker<TMarker>
- Inherited Members
Constructors
AzureEventBus(IMarshaller, AzureQueueOptions<TMarker>, AzureEventBusOptions<TMarker>)
Initializes a new instance of the AzureEventBus<TMarker> class.
public AzureEventBus(IMarshaller marshaller, AzureQueueOptions<TMarker> azureQueueOptions, AzureEventBusOptions<TMarker> azureEventBusOptions)
Parameters
marshallerIMarshallerThe IMarshaller that is used when converting IIntegrationEvent implementations to messages.
azureQueueOptionsAzureQueueOptions<TMarker>The AzureQueueOptions<TMarker> used to configure this instance.
azureEventBusOptionsAzureEventBusOptions<TMarker>The AzureEventBusOptions<TMarker> used to configure this instance.
Exceptions
- ArgumentNullException
marshallercannot be null - or -azureEventBusOptionscannot be null.- ArgumentException
azureEventBusOptionsare not in a valid state.
See Also
IPublishSubscribeChannel<TRequest, TMarker>