taskExecutionStrategy property

String? taskExecutionStrategy
getter/setter pair

The policy dictating the execution strategy of this task.

Optional. Possible string values are:

  • "TASK_EXECUTION_STRATEGY_UNSPECIFIED" : Default. If the strategy is not set explicitly, it will default to WHEN_ALL_SUCCEED.
  • "WHEN_ALL_SUCCEED" : Wait until all of its previous tasks finished execution, then verify at least one of the edge conditions is met, and execute if possible. This should be considered as WHEN_ALL_TASKS_SUCCEED.
  • "WHEN_ANY_SUCCEED" : Start execution as long as any of its previous tasks finished execution and the corresponding edge condition is met (since we will execute if only that succeeding edge condition is met).
  • "WHEN_ALL_TASKS_AND_CONDITIONS_SUCCEED" : Wait until all of its previous tasks finished execution, then verify the all edge conditions are met and execute if possible.

Implementation

core.String? taskExecutionStrategy;