Callbacks
ICInAppNotificationCallback
This interface represents call back methods implemented in InAppNotificationViewBinder to listen for InAppNotification displayed events, action click events and dismiss events.
onNotificationDisplayed
This method will be invoked when InApp Notification displayed
Syntax: void onNotificationDisplayed(ICMessage message)
Parameters: message - The received ICMessage
onNotificationClicked
This method will be invoked when InApp Notification action clicked
Syntax: void onNotificationClicked(ICMessage message,
java.lang.String action,
java.lang.String value)
Parameters: message - The received ICMessage
action - action to perform when interaction takes place
value - value is used to complete certain actions.
onNotificationDismissed
This method will be invoked when InApp Notification dismissed
Syntax: void onNotificationDismissed(ICMessage message)
Parameters: message - The received ICMessage
Updated 12 months ago