InterviewSolution
| 1. |
What do you mean by Flow in Mule? |
|
Answer» ‘Flow’ is when we combine together multiple individual processors in order to handle a receipt, its processing and eventual ROUTING of a message. We can connect several flows together to build one whole application. This application can then be DEPLOYED on Mule, on-premise, or another app server, or also on the cloud. Simply PUT, the sequences of the message processors are called flows. A message entering a flow can pass through a LARGE variety of processors. In the figure shown below, after receiving the message through a request-response INBOUND endpoint, Mule then transforms the content into a new format. The business logic is then processed in a component before returning a response through the message source. |
|