Skip to content

Commit 1d5cd9c

Browse files
authored
Added docs for NATS broker (#71)
1 parent fc93789 commit 1d5cd9c

File tree

1 file changed

+19
-7
lines changed

1 file changed

+19
-7
lines changed

docs/available-components/brokers.md

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -79,22 +79,34 @@ await my_task.kicker().with_broker(broker).kiq()
7979

8080
:::
8181

82-
## AioPikaBroker (for RabbitMQ)
8382

84-
This broker is not part of the core taskiq lib. You can install it as a separate package [taskiq-aio-pika](https://pypi.org/project/taskiq-aio-pika/).
83+
## Custom brokers
84+
85+
These brokers are not parts of the core taskiq lib. You can install them as a separate packages.
86+
87+
You can read more about parameters and abilities of these brokers in README.md of each repo.
88+
89+
90+
### AioPikaBroker (for RabbitMQ)
91+
92+
Project link: [taskiq-aio-pika](https://github.com/taskiq-python/taskiq-aio-pika).
8593

8694
```bash
8795
pip install taskiq-aio-pika
8896
```
8997

90-
You can read more about parameters and abilities of this broker in [README.md](https://github.com/taskiq-python/taskiq-aio-pika).
98+
### Redis broker
9199

92-
## Redis broker
93-
94-
This broker is not part of the core taskiq lib. You can install it as a separate package [taskiq-redis](https://pypi.org/project/taskiq-redis/).
100+
Project link: [taskiq-redis](https://github.com/taskiq-python/taskiq-redis).
95101

96102
```bash
97103
pip install taskiq-redis
98104
```
99105

100-
You can read more about parameters and abilities of this broker in [README.md](https://github.com/taskiq-python/taskiq-redis).
106+
### NATS broker
107+
108+
Project link: [taskiq-nats](https://github.com/taskiq-python/taskiq-nats).
109+
110+
```bash
111+
pip install taskiq-nats
112+
```

0 commit comments

Comments
 (0)