We are reading messages from a JMS Queue, which we do multi-threaded using the JMS message-driven-channel-adapter, which dumps the messages into a Spring Integration channel.
After this we want the messages to be delivered by a Rest call over HTTP to a remote server. By default the HTTP outbound-channel-adapter is going to read 1 message at a time from the channel and send the messages serially. Is there any possibility of having this happen asynchronously? Maybe with a configurable number of sender threads?
Thanks.


Reply With Quote
