You need to sign in to do that
Don't have an account?

very basic question on codesss
the below code what is the meaning of
TriggerFactory.createHandler(Implementation__c.sObjectType);
where to check the code
trigger ImplementationTrigger on Implementation__c (after insert, after update) {
System.debug('enter implementation trigger');
TriggerFactory.createHandler(Implementation__c.sObjectType);
}
TriggerFactory.createHandler(Implementation__c.sObjectType);
where to check the code
trigger ImplementationTrigger on Implementation__c (after insert, after update) {
System.debug('enter implementation trigger');
TriggerFactory.createHandler(Implementation__c.sObjectType);
}
Your code is calling the method createHandler of TriggerFactory class.
follow below link:-https://www.infallibletechie.com/2015/12/trigger-factory-implementation-in.html
Please mark it as Best Answer if it helps you.
Thanks & Regards
Suraj Tripathi