ActiveMQ & Camel - How to create dependency in routing paths
Posted
by CodeMedic
on Stack Overflow
See other posts from Stack Overflow
or by CodeMedic
Published on 2010-04-19T19:20:49Z
Indexed on
2010/04/19
19:23 UTC
Read the original article
Hit count: 294
I have a message routing to implement, which has routes that vary according to the message content. Some strands of the route are dependent on other.
If for example I have Data_A which has Task_A and Task_B to be performed on it. Whereas Data_B has only Task_B to be performed on it.
Here each Task has a queue served by consumers.
If Task_A should be performed only after Task_B if Task_B is requested on the data, how do I set-up such dependencies?
© Stack Overflow or respective owner