RabbitMQ

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

var uri = new Uri("amqp://localhost");

var resolver = EventFlowOptions.with
  .PublishToRabbitMq(RabbitMqConfiguration.With(uri))
  ...
  .CreateResolver();

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