execute method

Future<List> execute (
  1. String correlationId,
  2. List components,
  3. 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