DEPRECATED: Diffusion iOS Classic API  5.9.4
 All Data Structures Files Functions Variables Enumerations Enumerator Properties Macros Pages
DFPingMessage.h
1 /*
2  * PingMessage.h
3  *
4  * Created by dhudson on 30/06/2009 - Diffusion 5.9.4_01
5  * Copyright 2009 Push Technology Ltd. All rights reserved.
6  *
7  * This object is sent to the DFClientDelegate on recipt of a Ping request
8  */
9 
10 /**
11  Representation of the ping response message, as sent from the Diffusion server.
12  */
13 @interface DFPingMessage : NSObject
14 @property(nonatomic,readonly) NSDate *timestamp; /**< Datestamp of the original ping request */
15 @property(nonatomic,readonly) unsigned int queueSize; /**< Current size of the mesage queue for this client */
16 
17 /**
18  Initialise a DFPingMessage object
19  @param timestamp String object holding a decimal number of milliseconds since the epoch
20  @param size Queue size for this client
21  @return An initialiased DFPingMessage object
22  */
23 
24 
25 @end