Skip to content

IF_Async

Class · Group: Async Processing

apex
global inherited sharing class IF_Async

A 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

ClassDescription
AsynchronousExecutionStrategyEnum defining different asynchronous execution strategies.
FinishableOptional interface for defining finalizer logic that runs after all data is processed.
ProcessableInterface for defining the core processing logic to be executed by an asynchronous job.