3

Does the Apache Camel framework offer support the Process Manager Pattern? (http://www.enterpriseintegrationpatterns.com/ProcessManager.html)

hveiga
  • 6,725
  • 7
  • 54
  • 78
Lintz
  • 31
  • 1

1 Answers1

2

Yeah you can use the dynamic router http://camel.apache.org/dynamic-router.html

And then keep state on the exchange which the dynamic router accesses to determine the next step.

When you are done then the next step should be evaluated as null.

Claus Ibsen
  • 56,060
  • 7
  • 50
  • 65