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