Versions Compared

Key

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

...

Code Block
from("jms:topic:stock:quote")
        .resequence().xpath("/quote/@symbol")
        .timeout(60 * 1000)
        .to("sedaacct:quotes");

NOTE: By default, it will use ascending sequence for the ordering. We do have the ability to develop our own comparison for sorting if required.

...

Code Block
from("file://inventory")
        .resequence().xpath("/inventory/@sku")
        .stream().timeout(60 * 60 * 1000)
        .to("sedaacct:inventoryUpdates");