Centralized Salesforce Development Framework

Scott Covert (scott.b.covert@gmail.com)
Home
AccountAfterDeleteTriggerHandler
AccountAfterInsertTriggerHandler
AccountAfterUnDeleteTriggerHandler
AccountAfterUpdateTriggerHandler
AccountBeforeDeleteTriggerHandler
AccountBeforeInsertTriggerHandler
AccountBeforeUpdateTriggerHandler
AccountHelper
AccountTriggerDispatcher
AccountsTest
CalloutHandler
ConfigService
CustomException
DMLManager
DataFactoryService
DataFactoryServiceTest
DateService
DateServiceTest
DiagnosticsInstrumentation
HttpCalloutMockService
ITriggerDispatcher
ITriggerHandler
QueueableDispatcher
QueueableHandler
QueueableHandlerTest
RepeatingBatch
RepeatingFuture
SObjectService
SObjectServiceTest
ScheduleHandler
ScheduledDispatcher
TestVerificationService
Test_DMLManager
TriggerDispatcherBase
TriggerFactory
TriggerHandlerBase
TriggerParameters

ITriggerHandler

public interface ITriggerHandler
DescriptionDefines the interface for trigger handlers. Logic for the first time events are placed under the mainEntry method and the logic for the subsequent events raised on the same transaction (reentrant) are placed under the inProgressEntry method.
AuthorScott Covert
Date11/9/2014

Methods

  batchEntry

void batchEntry(TriggerParameters tp)
DescriptionCalled by batch apex
AuthorScott Covert
Date11/9/2014
Parameters
TriggerParametersThe trigger parameters such as the list of records before and after the update.

  futureEntry

void futureEntry(TriggerParameters tp)
DescriptionCalled by asynchronous function
AuthorScott Covert
Date11/9/2014
Parameters
TriggerParametersThe trigger parameters such as the list of records before and after the update.

  inProgressEntry

void inProgressEntry(TriggerParameters tp)
DescriptionCalled for the subsequent times in the same execution context.
AuthorScott Covert
Date11/9/2014
Parameters
TriggerParametersThe trigger parameters such as the list of records before and after the update.

  mainEntry

void mainEntry(TriggerParameters tp)
DescriptionCalled for the first time in the execution context.
AuthorScott Covert
Date11/9/2014
Parameters
TriggerParametersThe trigger parameters such as the list of records before and after the update.

  queueableEntry

void queueableEntry(TriggerParameters tp)
DescriptionCalled by queueable function
AuthorScott Covert
Date2/26/2016
Parameters
TriggerParametersThe trigger parameters such as the list of records before and after the update.

  scheduledEntry

void scheduledEntry(TriggerParameters tp)
DescriptionCalled by scheduled apex
AuthorScott Covert
Date11/9/2014
Parameters
TriggerParametersThe trigger parameters such as the list of records before and after the update.

  updateObjects

void updateObjects()
DescriptionUpdates the objects, if any.
AuthorScott Covert
Date11/9/2014