-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Gabriele Santomaggio <[email protected]>
- Loading branch information
1 parent
49f5f16
commit 7cfdcbb
Showing
7 changed files
with
145 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,26 @@ | ||
# RabbitMQ AMQP 1.0 .NET Client | ||
|
||
This library is meant to be used with RabbitMQ 4.0. | ||
Still work in progress suitable for testing in pre-production environments | ||
Suitable for testing in pre-production environments | ||
|
||
## How to Run | ||
|
||
- Start the broker with `./.ci/ubuntu/one-node/gha-setup.sh start`. Note that this has been tested on Ubuntu 22 with docker. | ||
- Run the tests with ` dotnet test ./Build.csproj --logger "console;verbosity=detailed"` | ||
- Stop RabbitMQ with `./.ci/ubuntu/one-node/gha-setup.sh stop` | ||
## Install | ||
|
||
## Getting Started | ||
The client is distributed via [NuGet](https://www.nuget.org/packages/RabbitMQ.AMQP.Client/). | ||
|
||
You can find an example in: `docs/Examples/GettingStarted` | ||
## Examples | ||
|
||
## Install | ||
Inside the `docs/Examples` directory you can find examples of how to use the client. | ||
|
||
The client is distributed via [NuGet](https://www.nuget.org/packages/RabbitMQ.AMQP.Client/). | ||
|
||
## Documentation | ||
|
||
- [Client Guide](https://www.rabbitmq.com/client-libraries/amqp-client-libraries) | ||
- [API](https://rabbitmq.github.io/rabbitmq-amqp-dotnet-client/api/RabbitMQ.AMQP.Client.html) | ||
|
||
|
||
## How to Run | ||
|
||
- Start the broker with `./.ci/ubuntu/one-node/gha-setup.sh start`. Note that this has been tested on Ubuntu 22 with docker. | ||
- Run the tests with ` dotnet test ./Build.csproj --logger "console;verbosity=detailed"` | ||
- Stop RabbitMQ with `./.ci/ubuntu/one-node/gha-setup.sh stop` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# RabbitMQ AMQP 1.0 .NET Client examples | ||
|
||
This directory contains examples of how to use the RabbitMQ AMQP 1.0 .NET client. | ||
|
||
- Getting Started with the Client [here](./GettingStarted/) | ||
- RPC Server and Client [here](./Rpc/) | ||
- How to write a reliable client [here](./HAClient/) | ||
- Performance Test [here](./PerformanceTest/). You can tune some parameters in the `Program.cs` file. |