Class RabbitMqEventBus
- Namespace
- Savvyio.Extensions.RabbitMQ.EventDriven
- Assembly
- Savvyio.Extensions.RabbitMQ.dll
Provides a default implementation of the RabbitMqMessage class for messages holding an IIntegrationEvent implementation.
public class RabbitMqEventBus : RabbitMqMessage, IDisposable, IAsyncDisposable, IAsyncHealthCheckProvider<IConnection>, IPublishSubscribeChannel<IIntegrationEvent>, IPublisher<IIntegrationEvent>, ISubscriber<IIntegrationEvent>
- Inheritance
-
RabbitMqEventBus
- Implements
-
IAsyncHealthCheckProvider<IConnection>
- Derived
- Inherited Members
Examples
RabbitMqEventBus publishes and subscribes to integration events through RabbitMQ. Configure it with RabbitMqEventBusOptions and use it as IPublishSubscribeChannel<IIntegrationEvent>.
using System;
using Savvyio.EventDriven;
using Savvyio.Extensions.RabbitMQ.EventDriven;
using Savvyio.Messaging;
namespace ExampleApp;
public class RabbitMqEventBusConfig
{
public static RabbitMqEventBusOptions CreateOptions() => new RabbitMqEventBusOptions { AmqpUrl = new Uri("amqp://guest:guest@localhost:5672"), ExchangeName = "events" };
public static IPublishSubscribeChannel<IIntegrationEvent> AsChannel(RabbitMqEventBus bus) => bus;
}
Constructors
RabbitMqEventBus(IMarshaller, RabbitMqEventBusOptions)
Initializes a new instance of the RabbitMqEventBus class.
public RabbitMqEventBus(IMarshaller marshaller, RabbitMqEventBusOptions options)
Parameters
marshallerIMarshallerThe marshaller used for serializing and deserializing messages.
optionsRabbitMqEventBusOptionsThe options used to configure the RabbitMQ event bus.
Exceptions
- ArgumentNullException
marshallercannot be null -or-optionscannot be null.- ArgumentException
optionsare not in a valid state.
Methods
PublishAsync(IMessage<IIntegrationEvent>, Action<AsyncOptions>)
Publishes the specified integration event message asynchronously to the configured RabbitMQ exchange.
public Task PublishAsync(IMessage<IIntegrationEvent> message, Action<AsyncOptions> setup = null)
Parameters
messageIMessage<IIntegrationEvent>The message to publish.
setupAction<AsyncOptions>The AsyncOptions which may be configured.
Returns
SubscribeAsync(Func<IMessage<IIntegrationEvent>, CancellationToken, Task>, Action<SubscribeAsyncOptions>)
Subscribes to integration event messages from the configured RabbitMQ exchange and invokes the specified asynchronous handler for each received message.
public Task SubscribeAsync(Func<IMessage<IIntegrationEvent>, CancellationToken, Task> asyncHandler, Action<SubscribeAsyncOptions> setup = null)
Parameters
asyncHandlerFunc<IMessage<IIntegrationEvent>, CancellationToken, Task>The function delegate that will handle the message.
setupAction<SubscribeAsyncOptions>The SubscribeAsyncOptions which may be configured.