Publish a Platform Event Using Apex Code To publish event messages, you create an instance of the event and pass it to the EventBus.publish() method. Subscribe a Platform Event Using Apex Trigger […]
Subscribe to Platform Event Using Process Builder
We can Subscribe a platform event using: Process Builder Flows Apex Triggers Lightning Web Component Aura Component External App Using CometD Problem Statement Whenever an Deadline field on account is updated, Deadline […]
Publish an Event Using Process Builder
We can Publish a platform event using: Process Builder Flows Apex Salesforce APIs Problem Statement Whenever an Deadline field on account is updated, Deadline field on all related cases should be updated […]
Define Platform Events in Salesforce
A platform event is a special kind of Salesforce entity, similar in many ways to an sObject. An event message is an instance of a platform event, similar to how a record […]
Event-Driven Software Architecture in Salesforce
The paradigm of event-based communication revolves around a publisher-subscriber model where a sender broadcasts a message that one or more receivers capture. Events get sent whether or not receivers are listening, and […]