From a389ea4b554d7d6fa380d9b44123532e30a7f78f Mon Sep 17 00:00:00 2001 From: Kamil Mysliwiec Date: Tue, 2 Jul 2024 14:52:53 +0200 Subject: [PATCH] Update content/techniques/queues.md --- content/techniques/queues.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/techniques/queues.md b/content/techniques/queues.md index a093a90c97..12c1bc6e08 100644 --- a/content/techniques/queues.md +++ b/content/techniques/queues.md @@ -57,7 +57,7 @@ BullModule.registerQueue({ }); ``` -> info **Hint** Create multiple queues by passing multiple comma-separated configuration objects to the `registerQueue()` method. [TODO(saratscheff): Does this apply to BullMQ as well?] +> info **Hint** Create multiple queues by passing multiple comma-separated configuration objects to the `registerQueue()` method. The `registerQueue()` method is used to instantiate and/or register queues. Queues are shared across modules and processes that connect to the same underlying Redis database with the same credentials. Each queue is unique by its name property. A queue name is used as both an injection token (for injecting the queue into controllers/providers), and as an argument to decorators to associate consumer classes and listeners with queues.