Flaminco.RabbitMQ.AMQP 2.2.0

dotnet add package Flaminco.RabbitMQ.AMQP --version 2.2.0                
NuGet\Install-Package Flaminco.RabbitMQ.AMQP -Version 2.2.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Flaminco.RabbitMQ.AMQP" Version="2.2.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Flaminco.RabbitMQ.AMQP --version 2.2.0                
#r "nuget: Flaminco.RabbitMQ.AMQP, 2.2.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Flaminco.RabbitMQ.AMQP as a Cake Addin
#addin nuget:?package=Flaminco.RabbitMQ.AMQP&version=2.2.0

// Install Flaminco.RabbitMQ.AMQP as a Cake Tool
#tool nuget:?package=Flaminco.RabbitMQ.AMQP&version=2.2.0                

Flaminco.RabbitMQ.AMQP

Flaminco.RabbitMQ.AMQP is a .NET library that simplifies the integration of RabbitMQ 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.Host = "amqp://guest:guest@localhost:5672";
    options.Username = "guest";
    options.Password = "guest";
});

Step 2: Create a Message Publisher

Implement a custom publisher by extending the MessagePublisher class. The publisher defines the queue to which it will send messages:

public class PersonPublisher : MessagePublisher
{
    public PersonPublisher(ISendEndpointProvider sendEndpointProvider) : base(sendEndpointProvider)
    {
    }

    protected override string Queue => "HelloQueue";
}

Step 3: Send a Message

Now, you can use your custom publisher to send a message to the specified queue:


public class Person : IMessage
{
    public string Name { get; set; }
    public int Age { get; set; }
}

public class Example(PersonPublisher _personPublisher)
{
    [HttpGet]
    public async Task PushMessage(CancellationToken cancellationToken)
    {
        await _personPublisher.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:

[QueueConsumer(queue: "HelloQueue")]
public class PersonConsumer : MessageConsumer<Person>
{
    public override Task Consume(ConsumeContext<Person> context)
    {
        Console.WriteLine($"Received message: {context.Message.Name}, Age: {context.Message.Age}");
        return Task.CompletedTask;
    }

   public override Task Consume(ConsumeContext<Fault<MessageBox>> context)
   {
       return base.Consume(context);
   }
}

Step 5: 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.

Step 6: Message Flow

To build synchronous communication between a publisher and waiting the consumer to return a response

[MessageFlow("HelloTest", typeof(ExampleRequest))]
public sealed class HelloMessageFlow(IRequestClient<ExampleRequest> requestClient) : MessageFlow<ExampleRequest>(requestClient);

example for using the flow publisher

[ApiController]
[Route("api/pdf")]
public class ExampleController(HelloMessageFlow helloMessageFlow) : ControllerBase
{
    [HttpPost("greating")]
    public async Task<IActionResult> GenerateMessage()
    {
        Response<ExampleResponse> response = await helloMessageFlow.GetResponseAsync<ExampleResponse>(new ExampleRequest
        {
            Id = 1,
        });

        return Ok(response.Message);
    }
}

and for consumer

[QueueConsumer("HelloTest")]
public class ExampleConsumer : MessageConsumer<ExampleRequest>
{
    public override async Task Consume(ConsumeContext<ExampleRequest> context)
    {
        await context.RespondAsync<ExampleResponse>(new ExampleResponse
        {
            Message = "This is a test message"
        });
    }
}

Messages example

public class ExampleRequest : IMessage
{
    public int Id { get; set; }
}

public class ExampleResponse : IMessage
{
    public string Message { get; set; }
}

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.0 93 11/5/2024
2.0.4 94 10/3/2024
2.0.3 142 10/1/2024
2.0.2 91 9/25/2024
2.0.1 103 9/24/2024
2.0.0 96 9/24/2024
1.0.0 131 8/11/2024