user2038596
user2038596

Reputation: 579

how to make the whole downstream flow of an executor-channel task retry-able?

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

Answers (1)

Gary Russell
Gary Russell

Reputation: 174664

Implement a HandleMessageAdvice with a RetryTemplate and add it to the first component's advice chain.

Upvotes: 1

Related Questions