2025-02-17 21:04:13 +08:00
|
|
|
# RabbitMQ AMQP 1.0 Golang Client
|
2024-09-10 17:26:46 +08:00
|
|
|
|
2025-02-14 18:08:09 +08:00
|
|
|
This library is meant to be used with RabbitMQ 4.0.
|
|
|
|
|
Suitable for testing in pre-production environments.
|
2024-09-10 17:26:46 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
## Getting Started
|
|
|
|
|
|
2025-02-17 21:04:13 +08:00
|
|
|
- [Getting Started](docs/examples/getting_started)
|
2025-02-14 18:08:09 +08:00
|
|
|
- [Examples](docs/examples)
|
2025-01-30 18:29:44 +08:00
|
|
|
|
2025-02-17 21:04:13 +08:00
|
|
|
|
|
|
|
|
# Packages
|
|
|
|
|
|
|
|
|
|
The rabbitmq amqp client is a wrapper around the azure amqp client.</b>
|
|
|
|
|
You need the following packages to use the rabbitmq amqp client:
|
|
|
|
|
|
|
|
|
|
- `rabbitmqamqp` - The main package for the rabbitmq amqp client.
|
|
|
|
|
- `amqp` - The azure amqp client (You may not need to use this package directly).
|
|
|
|
|
|
|
|
|
|
|
2025-02-14 18:08:09 +08:00
|
|
|
## Build from source
|
2025-01-30 18:29:44 +08:00
|
|
|
|
2025-02-14 18:08:09 +08:00
|
|
|
- Start the broker with `./.ci/ubuntu/gha-setup.sh start`. Note that this has been tested on Ubuntu 22 with docker.
|
|
|
|
|
- `make test` to run the tests
|
|
|
|
|
- Stop RabbitMQ with `./.ci/ubuntu/gha-setup.sh stop`
|
2025-01-30 18:29:44 +08:00
|
|
|
|
|
|
|
|
|