IF_Async.Finishable
Class
apex
global interface IF_Async.FinishableOptional interface for defining finalizer logic that runs after all data is processed. Implement this for cleanup or notification actions.
Methods
| Method | Description |
|---|---|
| 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
| Parameter | Type | Description |
|---|---|---|
context | Database.BatchableContext | The BatchableContext providing job details, such as the job ID. |