Reputation: 579
In the same way as you can easily add an advice to a poller (for a queue-channel) so as to apply it to the entire downstream flow, is there a way to make the whole downstream flow of an executor-channel task retry-able ?
Upvotes: 0
Views: 59
Reputation: 174664
Implement a HandleMessageAdvice
with a RetryTemplate
and add it to the first component's advice chain.
Upvotes: 1