RemoteNotificationType
@objc
public enum RemoteNotificationType : Int
Remote Notification Type provides an option to ignore Pusher initiated related features. Whenever you receive push notification the handleNotification(userInfo:) method should be called. Sometimes, these notifications are just for Pusher SDK to handle.
Values
ShouldIgnore
It’s safe to ignore Pusher initiated notification.
ShouldProcess
Do not ignore notification as it may contain additional data.
-
Ignore Pusher initiated notification.
Declaration
Swift
case ShouldIgnore
-
Do not ignore notification.
Declaration
Swift
case ShouldProcess