Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: commented changes for CAMEL-3983

...

The SEDA producer provides no operations. You only send data to the specified queue.

Name

default value

Description

transferExchange

false

Camel 2.8.0: if set to true the whole Exchange will be transfered. If header or body contains not serializable objects, they will be skipped.

Java DSL :

Code Block
from("direct:foo")
.to("hazelcast:seda:foo");

...