-

- BlackBerry Dynamics
- Runtime library for iOS applications
- 13.0.1.117
Go to the documentation of this file.
9 #import <Foundation/Foundation.h>
13 #ifndef __has_extension
14 #define __has_extension(x) 0 // Compatibility with non-clang compilers.
19 #if __has_extension(attribute_deprecated_with_message)
20 # define DEPRECATE_PUSH_CONNECT_DISCONNECT __attribute__((deprecated("No longer required")))
21 # define DEPRECATE_GDPUSHCONNECTION __attribute__((deprecated("GDPushConnection interface has been deprecated")))
22 # define DEPRECATE_GDPUSHCHANNELDELEGATE __attribute__((deprecated("GDPushChannelDelegate protocol has been deprecated, use notifications instead.")))
24 # define DEPRECATE_PUSH_CONNECT_DISCONNECT __attribute__((deprecated))
25 # define DEPRECATE_GDPUSHCONNECTION __attribute__((deprecated))
26 # define DEPRECATE_GDPUSHCHANNELDELEGATE __attribute__((deprecated))
30 NS_ASSUME_NONNULL_BEGIN
386 void* m_pushChannelInternal;
410 - (instancetype)initWithIdentifier:(NSString*)pushChannelIdentifier;
467 NS_ASSUME_NONNULL_END
NSString *const GDPushChannelOpenedNotification
Push Channel opened notification name.
NSString *const GDPushChannelMessageKey
Key for the message data, in a Push Channel notification user information dictionary.
@ GDPushChannelStateClosed
Definition: GDPush.h:55
NSString *const GDPushChannelHostKey
Key for the Push Channel host name, in a notification user information dictionary.
@ GDPushChannelStateError
Definition: GDPush.h:59
NSString *const GDPushChannelClosedNotification
Push Channel closed notification name.
@ GDPushChannelStateOpen
Definition: GDPush.h:51
Manage Push Channel tokens and notifications.
Definition: GDPush.h:384
NSString *const GDPushChannelErrorKey
Key for the error code, in a Push Channel notification user information dictionary.
NSString *const GDPushChannelPingFailedNotification
Push Channel ping failed on server notification name.
NSString *const GDPushChannelErrorNotification
Push Channel error notification name.
NSString *const GDPushChannelMessageNotification
Push Channel received message notification name.
GDPushChannelState
Push Channel state.
Definition: GDPush.h:43
@ GDPushChannelStateNone
Definition: GDPush.h:47
NSString *const GDPushChannelTokenKey
Key for the Push Channel token, in a notification user information dictionary.