Posts

Showing posts from January, 2020

Akil manati

·        Difference between "Scatter gather" and "For Each". è Scatter Gather : The routing message processor Scatter-Gather sends a request message to multiple targets concurrently. It collects the responses from all routes and aggregates them into a single message. è For Each : The Foreach scope splits a collection into elements and processes them iteratively through the processors embedded in the scope, then returns the original message to the flow. ·        Which Flow Strategy used in Mule flow. è A flow processing strategy determines how Mule implements message processing for a given flow. è Should the message be processed synchronously (on the same thread) or asynchronously (on a different thread)? è If asynchronously, what are the properties of the pool of threads used to process the messages? è If asynchronously, how will messages wait for their turn to be processed in the second thread? · ...