public interface PushActionsProvider
getPushActionCategories()
, then the user may be presented with a set of options/actions
on the push notification. The selected action ID would be made available inside the PushCallback.push(java.lang.String)
callback via the PushContent.getActionId()
method.Modifier and Type | Method and Description |
---|---|
PushActionCategory[] |
getPushActionCategories()
Returns the available categories for push notifications that this app responds to.
|
PushActionCategory[] getPushActionCategories()
PushActionCategory.getId()
of
one of these categories, then the actions in that category will be presented to the user as options (on supported platforms).
If the user selects one of these actions, their choice will be made available inside the PushCallback.push(java.lang.String)
callback via the PushContent.getActionId()
method.