Conforms to NSObject
Declared in UAInboxPushHandler.h

Overview

This protocol defines a delegate method that is called when a push notification arrives with a rich push message ID embedded in its payload.

Instance Methods

applicationLaunchedWithRichPushNotification:

Handle a rich push notification that launched the application.

- (void)applicationLaunchedWithRichPushNotification:(NSDictionary *)notification

Parameters

notification

An NSDictionary with the push notification contents.

Declared In

UAInboxPushHandler.h

launchRichPushMessageAvailable:

Called when a Rich Push message associated with the push that launched the application is available for viewing.

- (void)launchRichPushMessageAvailable:(UAInboxMessage *)richPushMessage

Parameters

richPushMessage

The Rich Push message

Declared In

UAInboxPushHandler.h

richPushMessageAvailable:

Called when a new Rich Push message is available for viewing.

- (void)richPushMessageAvailable:(UAInboxMessage *)richPushMessage

Parameters

richPushMessage

The Rich Push message

Declared In

UAInboxPushHandler.h

richPushNotificationArrived:

Handle an incoming rich push notification.

- (void)richPushNotificationArrived:(NSDictionary *)notification

Parameters

notification

An NSDictionary with the push notification contents.

Declared In

UAInboxPushHandler.h

showInbox

Called when the inbox is requested to be displayed.

- (void)showInbox

Declared In

UAInboxPushHandler.h

showInboxMessage:

Called when the inbox message is requested to be displayed.

- (void)showInboxMessage:(UAInboxMessage *)inboxMessage

Parameters

inboxMessage

The inbox message.

Declared In

UAInboxPushHandler.h