Hi I add a little note to the option in the table of the docs.
On Wed, Feb 8, 2012 at 5:39 AM, vivekvasudeva <[email protected]> wrote: > I switched it to having multipleConsumers=true for all. Worked like a charm > ...Is it possible to put it in the component doc of seda that to accomplish > the pubsub, the multipleConsumers is needed on all places. Is there anything > I can do to help put the same? Also to test the above I used the below > from("timer://foo?fixedRate=true&delay=10&period=1s") > .setBody(constant("Hello world!")) > .to("seda:dump"); > > from("seda:dump?multipleConsumers=true").routeId("one") > .log("one: + ${body}"); > > from("seda:dump?multipleConsumers=true").routeId("two") > .log("two: + ${body}"); > > from("seda:dump?multipleConsumers=true").routeId("three") > .log("three: + ${body}"); > > context.start(); > Thread.sleep(10000); > context.stopRoute("two"); > context.removeRoute("two"); > Thread.sleep(10000); > context.stop(); > > -- > View this message in context: > http://camel.465427.n5.nabble.com/Question-on-VM-Endpoint-multipleConsumers-and-OSGi-tp3284450p5465523.html > Sent from the Camel - Users mailing list archive at Nabble.com. -- Claus Ibsen ----------------- FuseSource Email: [email protected] Web: http://fusesource.com Twitter: davsclaus, fusenews Blog: http://davsclaus.blogspot.com/ Author of Camel in Action: http://www.manning.com/ibsen/
