Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 471 Bytes

README.md

File metadata and controls

16 lines (14 loc) · 471 Bytes

Lightning-StreamingAPI-CometD

Create a push topic

PushTopic pushTopic = new PushTopic();
pushTopic.Name = 'CaseUpdates';
pushTopic.Query = 'SELECT Id, CaseNumber, Subject, Status FROM Case';
pushTopic.ApiVersion = 38.0;
pushTopic.NotifyForOperationCreate = true;
pushTopic.NotifyForOperationUpdate = true;
pushTopic.NotifyForOperationUndelete = true;
pushTopic.NotifyForOperationDelete = true;
pushTopic.NotifyForFields = 'Referenced';
insert pushTopic;