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
Kam.ax1015Kam.ax1015 

Streaming API - persistence

Use case: Account is created using Salesforce Apex. Need to send this account information to external vendors.

 

To do this I was planning to use Mule ESB which will subscribe to a topic "Account create". The question is what if topic subscriber (Mule ESB in this case) goes down?  Will Salesforce try to deliver the event again till it succeeds?

 

Thanks,

Kam

Best Answer chosen by Admin (Salesforce Developers) 
VM_SFDCVM_SFDC

No. Streaming events are not persistent. If the client subscription expires, the client will not receive the events happenned in the past while it was not subscribed.

 

--Vinod.