Helper class that allows you to execute one or more components.
Description
The Executor class allows you to execute one or more components.
Static methods
execute
Executes multiple components.
To be executed, components must implement the IExecutable interface.
If they don’t, the call to this method has no effect.
See IExecutable, Parameters.
public static
execute(context: IContext, components: any[], args: Parameters): Promise<any[]>
- context: IContext - (optional) execution context to trace execution through call chain.
- components: any[] - list of components that are to be executed.
- args: Parameters - execution arguments.
- returns: Promise<any[]> - execution result
executeOne
Executes a specific component.
To be executed, components must implement the IExecutable interface. If they don’t, the call to this method has no effect.
public static
executeOne(context: IContext, component: any, args: Parameters): Promise<any>
- context: IContext - (optional) execution context to trace execution through call chain.
- component: any - component that is to be executed.
- args: Parameters - execution arguments.
- returns: Promise<any> - execution result.