IF_Async.Processable
Class
apex
global interface IF_Async.ProcessableKnown Derived Types: PROC_ExecuteDML, PROC_UpdateFields, PROC_ExecuteDML.execute(List<Object>), PROC_UpdateFields.execute(List<Object>)
Interface for defining the core processing logic to be executed by an asynchronous job.
Methods
| Method | Description |
|---|---|
| global abstract void execute(List<Object> items) | Executes the business logic on a list of items. |
execute
apex
global abstract void execute(List<Object> items)Executes the business logic on a list of items.
Parameters
| Parameter | Type | Description |
|---|---|---|
items | List | The list of objects to process in the current transaction. |