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-eda/4-configuration-properties.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,8 +13,8 @@ app:
13
13
async:
14
14
app: # this is the name of the default domain
15
15
withDLQRetry: false # if you want to have dlq queues with retries you can set it to true, you cannot change it after queues are created, because you will get an error, so you should delete topology before the change.
16
-
maxRetries: 10#max message retries, used when withDLQRetry is enabled
17
-
retryDelay: 1000# interval for message retries, used when withDLQRetry is enabled
16
+
maxRetries: -1#-1 will be considered default value. When withDLQRetry is true, it will be retried 10 times. When withDLQRetry is false, it will be retried indefinitely.
17
+
retryDelay: 1000# interval for message retries, with and without DLQRetry
18
18
listenReplies: true # if you will not use ReqReply patter you can set it to false
19
19
createTopology: true # if your organization have restricctions with automatic topology creation you can set it to false and create it manually or by your organization process.
20
20
delayedCommands: false # Enable to send a delayed command to an external target
.listenEvent("animals.*", events::handleEventA, Object.class/*change for proper model*/)
132
+
.listenEvent("pets.#.any", events::handleEventA, Object.class/*change for proper model*/);
133
+
}
134
+
}
135
+
```
136
+
118
137
## Example
119
138
120
139
You can see a real example at [samples/async/async-receiver-responder](https://github.com/reactive-commons/reactive-commons-java/tree/master/samples/async/async-receiver-responder)
Copy file name to clipboardExpand all lines: docs/docs/reactive-commons/9-configuration-properties.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,8 +12,8 @@ This can be done by Spring Boot `application.yaml` or by overriding the [AsyncPr
12
12
app:
13
13
async:
14
14
withDLQRetry: false # if you want to have dlq queues with retries you can set it to true, you cannot change it after queues are created, because you will get an error, so you should delete topology before the change.
15
-
maxRetries: 10#max message retries, used when withDLQRetry is enabled
16
-
withDLQRetry: 1000# interval for message retries, used when withDLQRetry is enabled
15
+
maxRetries: -1#-1 will be considered default value. When withDLQRetry is true, it will be retried 10 times. When withDLQRetry is false, it will be retried indefinitely.
16
+
retryDelay: 1000# interval for message retries, with and without DLQRetry
17
17
listenReplies: true # if you will not use ReqReply patter you can set it to false
18
18
createTopology: true # if your organization have restricctions with automatic topology creation you can set it to false and create it manually or by your organization process.
19
19
delayedCommands: false # Enable to send a delayed command to an external target
0 commit comments