Slide 3
Slide 3 text
Subflow
Subflow always process the message synchronously and always inherits the processing as well as
exception strategy from triggering flow. During subflow running, processing on triggering flow
stalls till the subflow completes the processing and handover the message to triggering flow.
• Subflow is best suited for code reuse, so you can write the block of code once within subflow and it
can be triggered by any flow within same application.
• You are breaking a flow into various subflow and which make GUI view intitutive and xml easy to
read.
• Subflow inherits processing as well as exception strategy from triggering flow, so you don't have to
implement separate processing and exception strategy for sub flow.