![]() |
DEPRECATED: Diffusion iOS Classic API
5.9.4
|
Listener for responses from a Service Topic. More...
#import <DFServiceTopicDelegate.h>
Instance Methods | |
(void) | - serviceResponse: |
Notifies a response from a service request. | |
(void) | - serviceError: |
Notifies an error on a service request. | |
Listener for responses from a Service Topic.
A Service Topic is one that provides request/response capability (see ServiceTopicData). When a Client subscribes to a Service Topic then a Topic Load Message will be received by the Client that indicates that it is a TopicMessage::isServiceLoad() Service Load Message. In response to such a Message the Client application should create a ServiceTopicHandler using the Client connection ExternalClientConnection::createServiceTopicHandler(TopicMessage, ServiceTopicListener) method and declaring a listener of this type to receive all responses and notifications from the Topic.
- (void) serviceError: | (DFServiceTopicError *) | errorDetails |
Notifies an error on a service request.
This would indicate that a previous call to ServiceTopicHandler::request(String, TopicMessage) has failed for some reason at the server.
errorDetails | encapsulates details of the error |
- (void) serviceResponse: | (DFServiceTopicResponse *) | responseDetails |
Notifies a response from a service request.
This will return a response from a previous call of ServiceTopicHandler::request(String, TopicMessage).
responseDetails | encapsulates all details of the response. |