Flaminco.RabbitMQ.AMQP
2.0.1
See the version list below for details.
dotnet add package Flaminco.RabbitMQ.AMQP --version 2.0.1
NuGet\Install-Package Flaminco.RabbitMQ.AMQP -Version 2.0.1
<PackageReference Include="Flaminco.RabbitMQ.AMQP" Version="2.0.1" />
paket add Flaminco.RabbitMQ.AMQP --version 2.0.1
#r "nuget: Flaminco.RabbitMQ.AMQP, 2.0.1"
// Install Flaminco.RabbitMQ.AMQP as a Cake Addin #addin nuget:?package=Flaminco.RabbitMQ.AMQP&version=2.0.1 // Install Flaminco.RabbitMQ.AMQP as a Cake Tool #tool nuget:?package=Flaminco.RabbitMQ.AMQP&version=2.0.1
Flaminco.RabbitMQ.AMQP
Flaminco.RabbitMQ.AMQP is a .NET library that simplifies the integration of RabbitMQ AMQP 1.0 in your applications. This library provides a clean and easy-to-use API for creating consumers and publishers to interact with RabbitMQ queues.
Installation
You can install the package via NuGet Package Manager:
dotnet add package Flaminco.RabbitMQ.AMQP
Or via the Package Manager Console in Visual Studio:
Install-Package Flaminco.RabbitMQ.AMQP
Getting Started
Step 1: Configure the AMQP Client
First, you need to configure the AMQP client in your application's Startup
or Program
class:
builder.Services.AddAMQPClient<Program>(options =>
{
options.ConnectionString = "amqp://guest:guest@localhost:5672";
});
Step 2: Create a Message Publisher
Implement a custom publisher by extending the MessagePublisher
class. The publisher defines the queue(s) to which it will send messages:
public class PersonPublisher : MessagePublisher
{
public PersonPublisher(IOptions<AddressSettings> addressSettings) : base(addressSettings)
{
}
protected override string Name => nameof(PersonPublisher);
protected override string[] Queues => ["HelloQueue"];
}
Step 3: Send a Message
Now, you can use your custom publisher to send a message to the specified queue:
public class Example(IAMQPLocator _amqpLocator)
{
[HttpGet]
public async Task PushMessage(CancellationToken cancellationToken)
{
await using MessagePublisher helloPublisher = _amqpLocator.GetPublisher<PersonPublisher>();
await helloPublisher.PublishAsync(new Person
{
Name = "Ahmed Abuelnour",
Age = 30
}, cancellationToken);
}
}
Step 4: Create a Message Consumer
Implement a custom consumer by extending the MessageConsumer
class. The consumer defines the queue from which it will receive messages:
public class PersonConsumer : MessageConsumer
{
public PersonConsumer(IOptions<AddressSettings> addressSettings, IPublisher publisher) : base(addressSettings, publisher)
{
}
protected override string Name => nameof(PersonConsumer);
protected override string Queue => "HelloQueue";
}
Step 5: Implement a message handler
IMessageFaultHandler is Optional to handle the cases where the consumer couldn't deal with the incoming message
public class PersonMessageHandler : IMessageReceivedHandler<Person>, IMessageFaultHandler
{
public async Task Handle(MessageReceivedEvent<Person> notification, CancellationToken cancellationToken)
{
Console.WriteLine($"I got a new message saying: {notification.Message}");
}
public async Task Handle(MessageFaultEvent notification, CancellationToken cancellationToken)
{
Console.WriteLine($"fault message from: {notification.Name}, and queue: {notification.Queue}");
}
}
Step 6: Register the consumers to be marked as background service
Finally, register your consumers in the dependency injection container in your Startup
or Program
class:
builder.Services.AddAMQPConsumer<PersonConsumer,Person>();
Step 7: Run the Application
Build and run your application. The consumer will continuously listen for messages on the specified queue, while the publisher sends messages to that queue.
Contributing
If you encounter any issues or have suggestions for improvements, please feel free to contribute by submitting an issue or a pull request.
License
This project is licensed under the MIT License.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- AMQPNetLite.Core (>= 2.4.11)
- MediatR (>= 12.4.1)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Options (>= 8.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.