Replay PushTopic Streaming Events
Filtered Subscriptions
Bulk Subscriptions
Deactivating a Push Topic
PushTopic Streaming Allocations
Reference: PushTopic
Previous Versions
You can temporarily deactivate a PushTopic, rather than deleting it, by setting the isActive field to false.
To deactivate a PushTopic by Id, execute the following Apex code:
1PushTopic pt = new PushTopic(Id='0IFD0000000008jOAA', IsActive = false);
2update(pt);