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.

Since: 1.0

Example:

apex
public class MyProcessor implements IF_Async.Processable
{
    public void execute(List<Object> items)
    {
        // process items
    }
}

Properties

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