Skip to content

Demo code to show the use of the salesforce.com Streaming API through Visualforce.

Notifications You must be signed in to change notification settings

wesnolte/Salesforce-Streaming-API

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Push Notifications Demo for Salesforce

You will also need a Push Topic some like this:

PushTopic pushTopic = new PushTopic();
pushTopic.Name = 'AllAccounts';
pushTopic.Query = 'SELECT id, name FROM Account';
pushTopic.ApiVersion = 26.0;
pushTopic.NotifyForOperations = 'All';
pushTopic.NotifyForFields = 'Referenced';
insert pushTopic;

About

Demo code to show the use of the salesforce.com Streaming API through Visualforce.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published