Skip to content

IF_Async.Processable

Class

apex
global interface IF_Async.Processable

Known 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.

Since: 1.0


Methods

MethodDescription
global abstract void execute(List<Object> items)Executes the business logic on a list of items.

Method Details

execute

apex
global abstract void execute(List<Object> items)

Executes the business logic on a list of items.

Parameters:

  • items (List) - The list of objects to process in the current transaction.

Since: 1.0