Until Successful

UNTIL SUCCESSFUL   The Until Successful scope processes the components within it until they succeed or exhaust the maximum number of retries. Until Successful runs synchronously. Until Successful component Configure of Until-Successful- Max Retries:- Specifies the maximum number of retries that...

Round-Robin

Round Robin This router iterates through all the routes in the router component in a specific order but it only routes to one of the routes each time it is executed. For example, it keeps track of the last route it selected for execution and will not execute the same route again consecutively. Basic...

Scatter-Gather

Scatter-Gather “Scatter-Gather sends the requested data to multiple routes concurrently“. It waits for all the routes to complete the execution and then aggregates the response from each route and forms a Single output message and output will be “application/java” format. &nb...

Choice Router

Choice Choice Router works on the evaluation of the expression i.e., True or False. The Route for which the expression evaluates to be True, that route is executed. It executes routes sequentially i.e. if for both route-1 and route-2 condition expression evaluates to be true, it will execute only ro...

Flow Control in Mule 4

We will see four different Flow control components provided in Mule. We will also cover various use cases. In Mule, Flow Controls , you Route your input Mule Event into one or moreĀ  separate flows based on the Flow control components you use. Type of Flow Control component:- 1-Choice 2-Scatter-Gath...