execute method

Future<List> execute (String correlationId, List components, Parameters args)

Executes multiple components.

To be executed components must implement IExecutable interface. If they don't the call to this method has no effect.

  • correlationId (optional) transaction id to trace execution through call chain.
  • components a list of components that are to be executed.
  • args execution arguments. Return Future that receives execution result or error.

See executeOne See IExecutable See Parameters