Is there a way to create a recipient list for some of the messages: e.g. message is dispatched to more than one channel?
Thanks,
Vassil
Is there a way to create a recipient list for some of the messages: e.g. message is dispatched to more than one channel?
Thanks,
Vassil
You can create an instance of org.springframework.integration.router.RecipientLi stRouter and then either set a list of channel references or an array of channel names. The router is a handler itself, so you can then configure it within an <endpoint> element.
-Mark
Mark Fisher
Spring Integration Lead
SpringSource, a division of VMware
http://www.springsource.com
http://www.springsource.org/spring-integration
http://blog.springsource.com/main/author/markf
Thanks -- that was what I was looking for.