QsMessaging 1.0.140
dotnet add package QsMessaging --version 1.0.140
NuGet\Install-Package QsMessaging -Version 1.0.140
<PackageReference Include="QsMessaging" Version="1.0.140" />
paket add QsMessaging --version 1.0.140
#r "nuget: QsMessaging, 1.0.140"
// Install QsMessaging as a Cake Addin #addin nuget:?package=QsMessaging&version=1.0.140 // Install QsMessaging as a Cake Tool #tool nuget:?package=QsMessaging&version=1.0.140
QsMessaging
QsMessaging is a .NET 8 library designed for sending and receiving messages between services or components of your application using RabbitMQ. It supports horizontal scalability, allowing multiple instances of the same service to handle messages efficiently.
Available on NuGet for seamless integration:
A simple, scalable messaging solution for distributed systems.
Installation
Install the package using the following command:
dotnet add package QsMessaging
Registering the Library
Registering the library is simple. Add the following two lines of code to your Program.cs
:
// Add QsMessaging (use the default configuration)...
builder.Services.AddQsMessaging(options => { });
...
await host.UseQsMessaging();
Default Configuration
RabbitMQ
- Host:
localhost
- UserName:
guest
- Password:
guest
- Port:
5672
Usage
Sending Messages
Contract
Define a message contract:
public class RegularMessageContract
{
public required string MyTextMessage { get; set; }
}
Sending a Message
Inject IQsMessaging
into your class:
public YourClass(IQsMessaging qsMessaging) {}
Then, use it to send a message:
await qsMessaging.SendMessageAsync(new RegularMessageContract { MyTextMessage = "My message." });
Handling Messages
To handle the message, create a handler:
public class RegularMessageContractHandler : IQsMessageHandler<RegularMessageContract>
{
public Task<bool> Consumer(RegularMessageContract contractModel)
{
// Process the message here
return Task.FromResult(true);
}
}
Request/Response Pattern
You can also use the Request/Response pattern to send a request and await a response. This is useful when you need to communicate between services and expect a response.
Request/Response Contract
Define the request and response contracts:
public class MyRequestContract
{
public required string RequestMessage { get; set; }
}
public class MyResponseContract
{
public required string ResponseMessage { get; set; }
}
Sending a Request and Receiving a Response
To send a request and await a response, use the RequestResponse<TRequest, TResponse>
:
public class MyService
{
private readonly IQsMessaging _qsMessaging;
public MyService(IQsMessaging qsMessaging)
{
_qsMessaging = qsMessaging;
}
public async Task<MyResponseContract> SendRequestAsync(MyRequestContract request)
{
var response = await _qsMessaging.SendRequestResponseAsync<MyRequestContract, MyResponseContract>(request);
return response;
}
}
Handling Requests
To handle requests, implement the IQsRequestResponseHandler<TRequest, TResponse>
interface:
public class MyRequestHandler : IQsRequestResponseHandler<MyRequestContract, MyResponseContract>
{
public Task<MyResponseContract> Handle(MyRequestContract request)
{
// Process the request and create a response
return Task.FromResult(new MyResponseContract { ResponseMessage = "Response to: " + request.RequestMessage });
}
}
That's all, folks!
Documentation
For detailed documentation, visit the QsMessaging Wiki.
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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net8.0
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.2)
- Microsoft.Extensions.Hosting.Abstractions (>= 8.0.1)
- RabbitMQ.Client (>= 7.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.