Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Process Manager Pattern in Apache Camel

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

like image 499
Lintz Avatar asked Mar 19 '26 11:03

Lintz


1 Answers

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.

like image 103
Claus Ibsen Avatar answered Mar 24 '26 23:03

Claus Ibsen