![]() |
Orchestration SDK 5.10.1
|
#include <NotificationRegistrationDelegate.h>
Inherits <NSObject>.
Instance Methods | |
(void) | - onNotificationRegistrationStepCompleteWithCommand: |
(void) | - onNotificationRegistrationSuccessWithUser:notificationIdentifier: |
The NotificationRegistrationDelegate
protocol defines the specific elements required for the integrator to interact during the Notification Registration flow.
A NotificationRegistrationDelegate
object should be provided to the NotificationRegistrationParams
object in order to receive feedback during the notification registration process.
This flow is initiated by the client; it is started by a call to OrchestrationProtocol#startNotificationRegistration:(NotificationRegistrationParams *)
- (void) onNotificationRegistrationStepCompleteWithCommand: | (NSString *) | command |
Called when a step of the notification registration process is complete. The provided orchestration command is to be sent to the server.
command | an orchestration command that must be sent to the server |
- (void) onNotificationRegistrationSuccessWithUser: | (OrchestrationUser *) | orchestrationUser | |
notificationIdentifier: | (NSString *) | notificationIdentifier |
Called upon notification registration success
orchestrationUser | the user for which the notification registration was successful |
notificationIdentifier | the notification identifier used for the registration |