execute abstract method

Future execute(
  1. String? correlationId,
  2. Parameters args
)

Executes component with arguments and receives execution result.

  • correlationId (optional) transaction id to trace execution through call chain.
  • args execution arguments. Return Future that receives execution result or error.

Implementation

Future<dynamic> execute(String? correlationId, Parameters args);