IF_Async.AsynchronousExecutionStrategy
Class
apex
global enum IF_Async.AsynchronousExecutionStrategyEnum defining different asynchronous execution strategies.
Since: 1.0
Values
| Value | Description |
|---|---|
| global AUTO | Automatically decide between parallel, chainable, or batch based on data size and limits. |
| global BATCH | Force batch execution regardless of data size. |
| global CHAINABLE | Force chainable queueable execution (single parent with chained children). |
| global PARALLEL_QUEUEABLES | Force parallel queueable execution (multiple queueables enqueued simultaneously). |
Value Details
AUTO
apex
global AUTOAutomatically decide between parallel, chainable, or batch based on data size and limits.
BATCH
apex
global BATCHForce batch execution regardless of data size.
CHAINABLE
apex
global CHAINABLEForce chainable queueable execution (single parent with chained children).
PARALLEL_QUEUEABLES
apex
global PARALLEL_QUEUEABLESForce parallel queueable execution (multiple queueables enqueued simultaneously).