IF_Async
Class · Group: Async Processing
apex
global inherited sharing class IF_AsyncA container for shared global interfaces used by the asynchronous framework.
Since: 1.0
Example:
apex
public class MyProcessor implements IF_Async.Processable
{
public void execute(List<Object> items)
{
// process items
}
}Properties
| Property | Description |
|---|---|
| global enum AsynchronousExecutionStrategy | Enum defining different asynchronous execution strategies. |
| global interface Finishable | Optional interface for defining finalizer logic that runs after all data is processed. |
| global interface Processable | Interface for defining the core processing logic to be executed by an asynchronous job. |