Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/district09/net_nuget_messaging09
https://github.com/district09/net_nuget_messaging09
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/district09/net_nuget_messaging09
- Owner: district09
- License: other
- Created: 2023-07-10T08:41:35.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-05T09:51:03.000Z (about 2 months ago)
- Last Synced: 2024-12-01T22:07:20.921Z (23 days ago)
- Language: C#
- Size: 185 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Messaging09
Messaging09 is an opinionated library which enables messaging in dotnet applications.
The goal of the project is to make it easy to connect and use a message broker from your app,
and also reducing the boilerplate needed.For now, we only support the amqp(v1.0) protocol on the activemq artemis broker, but we'd like to support more in the
future. If this interests you, please submit an issue, or even a pull request.## installing Messaging09.Amqp
```powershell
Install-Package Messaging09.Amqp
``````bash
dotnet add package Messaging09.Amqp
```### installing for dotnet applications with dotnet DI
This references the package above, so you only need to install this one.
```powershell
Install-Package Messaging09.Amqp.Extensions.DependencyInjection
``````bash
dotnet add package Messaging09.Amqp.Extensions.DependencyInjection
```