We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39b6837 commit 02e0629Copy full SHA for 02e0629
content/techniques/queues.md
@@ -205,6 +205,8 @@ import { Processor } from '@nestjs/bull';
205
export class AudioConsumer {}
206
```
207
208
+> info **Hint** Consumers must be registered as `providers` so the `@nestjs/bull` package can pick them up.
209
+
210
Where the decorator's string argument (e.g., `'audio'`) is the name of the queue to be associated with the class methods.
211
212
Within a consumer class, declare job handlers by decorating handler methods with the `@Process()` decorator.
0 commit comments