Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 993 Bytes

README.md

File metadata and controls

29 lines (21 loc) · 993 Bytes

Rabbit MQ Event Bus

NuGet Downloads License

This project is based on eshopOnContainers RabbitMQ implementation and uses Serilog's logger for logging.

How to install

dotnet add package Biplov.EventBus.RabbitMQ

How to use

Register the RabbitMQ connection by invoking RegisterRabbitMqConnection function. For example:

services.RegisterRabbitMqConnection(Log.Logger, "foo.com",
        "testUser", "password", 3)

Register the EventBus

services.AddRabbitMqEventBus(Log.Logger, "myClientApp", 3)