Skip to content

IF_Async.Finishable ​

Class

apex
global interface IF_Async.Finishable

Optional interface for defining finalizer logic that runs after all data is processed. Implement this for cleanup or notification actions.


Methods ​

MethodDescription
global abstract void finish(Database.BatchableContext context)Called once after all chunks are processed, for cleanup or notifications.

finish ​

apex
global abstract void finish(Database.BatchableContext context)

Called once after all chunks are processed, for cleanup or notifications.

Parameters

ParameterTypeDescription
contextDatabase.BatchableContextThe BatchableContext providing job details, such as the job ID.