Upgrade to Pro — share decks privately, control downloads, hide ads and more …

MuleSoft Scatter-Gather

MuleSoft Scatter-Gather

MuleSoft Scatter-Gather

Alex teles

August 12, 2016
Tweet

More Decks by Alex teles

Other Decks in Education

Transcript

  1.  import java.util.Map;  import org.mule.api.MuleEvent;  import org.mule.api.MuleException; 

    import org.mule.api.routing.AggregationContext;  import org.mule.routing.AggregationStrategy;  public class testeScatter implements AggregationStrategy {  @Override  public MuleEvent aggregate(AggregationContext context) throws MuleException {  // TODO Auto-generated method stub  Map<String,Object> payload = (Map<String, Object>) context.getEvents();   return null;  }  }