I would say you don't need anything really special here. Something
like this should suffice:
from("jms:queue:input").beanRef("beanOne",
"methodOne").beanRef("beanTwo", "methodTwo");
On Thu, Dec 6, 2012 at 10:58 AM, Mike Stroming <[email protected]> wrote:
> Hi all,
>
> Another newbie question, if you don't mind.
>
> I have two processes that need the same message as input. However, the
> second process should only run based on successful output from the first
> process. Would a multicast/pipeline make sense here or not? I don't need
> either to get it to work, but I'm trying to follow some sort of Camel
> standard.
>
> Msg enters queue
> bean one
> if bean one successful
> bean two
>
> Thanks,
> Mike