I have an use case which needs needs to do the following:
Currently I have implemented by having a message channel between each of the step, meaning each step receives request from its inbound channel and once it completes its task, it posts on the inbound channel of the next step. Logging before and after is achieved through wireTap.
What is the best approach?
thank you,
WireTap
. You got it!errorChannel
option to catch all the downstream exceptions and handle them.RecipientListRouter
- so you send the same message to all the subscribed channels. Although you can use the PublishSubscribeChannel
as well.Filter
and its reject channel. Although the router
may do the trick for you as well.