Hi

See this EIP pattern
http://camel.apache.org/pipes-and-filters.html

Camel will process the messages in sequence using the same thread.

There is a multicast EIP (and the option parallelProcessing=true)
allows to use multiple threads.
http://camel.apache.org/multicast

And some notes about threading model and configuration as well here
http://camel.apache.org/threading-model.html

On Tue, Jun 5, 2012 at 5:40 PM, sambardar <sanjay_ambar...@yahoo.com> wrote:
> Hi,
>
> I have a basic question about how framework processes the messages. If i
> have something like this:
>
> <from uri="something" />
> <process ref = "somebean1" />
> <process ref = "somebean2" />
> <process ref = "somebean3" />
>
> In this case i have multiple processors for the message. Would this
> processing be serialized or Camel will send the message in parallel to each
> processor ?
>
> Thanks
>
> --
> View this message in context: 
> http://camel.465427.n5.nabble.com/Apache-Camel-Threading-Model-tp5714026.html
> Sent from the Camel - Users mailing list archive at Nabble.com.



-- 
Claus Ibsen
-----------------
FuseSource
Email: cib...@fusesource.com
Web: http://fusesource.com
Twitter: davsclaus, fusenews
Blog: http://davsclaus.com
Author of Camel in Action: http://www.manning.com/ibsen

Reply via email to