![]() |
Diffusion Apple API 6.11.5
Unified Client Library for iOS, tvOS and OS X / macOS
|
Methods implemented by classes handling streamed events for binary value topics.
This protocol defines the methods to be implemented by classes wishing to receive streamed events when updates are received from the server for binary topics.
Instance Methods | |
(void) | - diffusionStream:didUpdateTopicPath:specification:oldBinary:newBinary: |
![]() | |
(void) | - diffusionStream:didSubscribeToTopicPath:specification: |
(void) | - diffusionStream:didUnsubscribeFromTopicPath:specification:reason: |
![]() | |
(void) | - diffusionStream:didFailWithError: |
(void) | - diffusionDidCloseStream: |
- (void) diffusionStream: | (PTDiffusionValueStream *) | stream | |
didUpdateTopicPath: | (NSString *) | topicPath | |
specification: | (PTDiffusionTopicSpecification *) | specification | |
oldBinary: | (nullable PTDiffusionBinary *) | oldBinary | |
newBinary: | (PTDiffusionBinary *) | newBinary | |
An update was received for a topic path handled by a binary value stream.
stream | The value stream that received the update. |
topicPath | The topic path that was updated. |
specification | The specification for the updated topic. |
oldBinary | The previous value. If nil then this is the first value. |
newBinary | The new value derived from the last update received from the server. |