You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/reactive-commons/8-handling-queues.md
+74-14Lines changed: 74 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ sidebar_position: 8
8
8
9
9
To listen to a custom queue you should register it in the HandlerRegistry and make it available as a Bean. Queue listeners provide direct access to RabbitMQ queues with full control over queue configuration and topology.
10
10
11
-
### Listening Queues
11
+
### Listening queues
12
12
13
13
The simplest way to listen to a queue is by providing the queue name and a handler:
14
14
@@ -19,7 +19,7 @@ public class HandlerRegistryConfiguration {
var queueSpec =QueueSpecification.queue("quorum.queue")
@@ -177,3 +177,63 @@ Configure a quorum queue for high availability:
177
177
return creator.declare(queueSpec).then();
178
178
})
179
179
```
180
+
181
+
### Temporary queue configuration
182
+
183
+
Configure a temporary queue with a random name for short-lived, exclusive connections. Temporary queues are useful for reply-to patterns or ephemeral consumers:
Copy file name to clipboardExpand all lines: docs/docs/reactive-commons/9-serving-async-queries.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ public class HandlerRegistryConfiguration {
54
54
55
55
So any consumer can send a query with a name that matches with pattern, for example: `my.some.query`
56
56
57
-
### Delegated Queries
57
+
### Delegated queries
58
58
59
59
There is a concept introduced in queries that cannot be resolved locally and may require a later answer, in that case we are in front of the next scenario:
0 commit comments