Change Data Capture - Asynchronous Trigger Processing
In Salesforce there are multiple ways of processing data Asynchronously using " Batch Apex ", " Schedule Apex ", " Queueable Apex ", and " Future Method ". In Summer '19 release, there is another feature available called " Asynchronous Apex Triggers " that can process data Asynchronously with the help " Change Data Capture ". With Change Data Capture enabled for any specific object (Custom and Standard) in Salesforce, it begins publishing events every time when a record is created or updated or deleted or undeleted. Change Data Capture supports all custom objects and for list of supported standard object, here is the Link . Change Data Capture Setup: In order to enable Objects for receiving change notifications, navigate to Setup-->Integrations-->Change Data Capture, select object to add and click Save. Asynchronous Apex Trigger: Once Change Data Capture is enabled on an object, events are published and ...