DEPRECATED: Diffusion iOS Classic API  5.9.4
 All Data Structures Files Functions Variables Enumerations Enumerator Properties Macros Pages
DFServiceTopicResponse.h
1 //
2 // DFServiceTopicResponse.h
3 // DiffusionTransport
4 //
5 // Created by Martin Cowie on 23/12/2011 - Diffusion 5.9.4_01
6 // Copyright (c) 2013 Push Technology Ltd. All rights reserved.
7 //
8 
10 
11 
12 /**
13  * Encapsulates a response from a service request.
14  * <P>
15  * This encapsulates the details of a response from a call to [DFServiceTopicHandler sendRequest:withRequestType:]
16  */
17 
18 @interface DFServiceTopicResponse : NSObject
19 
20 
21 @property(weak, nonatomic,readonly) DFServiceTopicHandler *handler; /**< Parent handler object */
22 @property(nonatomic,readonly) NSString *responseType; /**< This identifies the type of response and is as defined by the service itself */
23 @property(nonatomic,readonly) NSString *requestID; /**< This returns the original identifier that was passed with the request */
24 @property(nonatomic,readonly) DFTopicMessage *responseMessage; /**< Return details of the response in the form of a Message containing headers and/or data returned from the server */
25 
26 @end