Skip to content

RabbitMQ

To setup EventFlow's RabbitMQ integration, install the NuGet package EventFlow.RabbitMQ and add this to your EventFlow setup.

1
2
3
4
var uri = new Uri("amqp://localhost");
// ...
.PublishToRabbitMq(RabbitMqConfiguration.With(uri))
// ...

After setting up RabbitMQ support in EventFlow, you can continue to configure it.