execute abstract method

Future execute(
  1. IContext? context,
  2. Parameters args
)

Executes component with arguments and receives execution result.

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

Implementation

Future<dynamic> execute(IContext? context, Parameters args);