function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
sundar s 24sundar s 24 

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);
}
Best Answer chosen by sundar s 24
Suraj Tripathi 47Suraj Tripathi 47
Hi,

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