Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

From 2.0 onwards on Camel you can specify the ExchangePattern Exchange Pattern using the dsl.

Code Block
from("mq:someQueue").
  inOnly().
  bean(Foo.class);

...