@palmetto/pubsub 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -92,6 +92,14 @@ yarn add @palmetto/pubsub zod
|
|
|
92
92
|
await subscriber.startSubscribe(schemaConfig, onMessage);
|
|
93
93
|
```
|
|
94
94
|
|
|
95
|
+
### RabbitMQ Usage
|
|
96
|
+
|
|
97
|
+
For specific details about using RabbitMQ see [RabbitMQ README.md](src/rabbitmq/README.md)
|
|
98
|
+
|
|
99
|
+
### BullMQ Usage
|
|
100
|
+
|
|
101
|
+
For specific details about using BullMQ see [BullMQ README.md](src/bullmq/README.md)
|
|
102
|
+
|
|
95
103
|
### Defining schemas
|
|
96
104
|
|
|
97
105
|
All schemas must be defined using `zod/z4`. By convention, all messages should extend the `IdMetaSchema` schema, but it is not strictly required.
|