Hi all...

Newbie question regarding choose().  Given

from(endpoint).choose()
  .when(predA).process(processorA)
  .when(predB).process(processorB);

If predA and predB are both true, do processorA and processorB both
get called?  Or does processing stop with processorA?

Don

Reply via email to