Push Notification for Multi User¶
There are two approaches you can follow to handle push notification in multi-user mode:
Unregister User for Push Notification During Logout and Re-Register During OnLoaded Event of Next User¶
- User can unregister push notification as part of logout (
skipReset = true). This may not succeed if there is no network connectivity when the logout occurs. - Let's assume that the user has successfully unregistered, any attempts to send a push notification to
User1while logged out would fail and the sending system would be responsible for proper handling/queuing of failed push messages. - Always try to register for push notifications during the
OnLoadedevent. - If the same user logs in after logout (and they unregistered for push during logout) but the device does not have network connectivity at login, the user would not be registered for push even if they come into coverage later. This is an edge case that could be handled in the app logic via
OnFailurehandling logic and a connectivity check callback. - If a new user signs in, the
OnLoadedregistration would automatically switch the push registration to the new user. Since user switch requires connectivity, the new push registration should always be successful.
Unregister User for Push Notification During Logout and Re-Register During OnUserSwitch Event¶
- Ideally
User1logs out (skipReset = true) and also unregisters for push notification. - Alternatively,
User1can also logout (skipReset = true) and not unregister for push notification. - In this specific case (when
User1does not call an unregister during logout), any push notification forUser1will continue to be received on the device whileUser1is logged out. - When
User2logs in, duringOnUserSwitch, register for push notifications to switch the notifications toUser2. User2can see any push notifications sent between logout (or before if not cleared byUser1) and the timeOnUserSwitchcompletes.
In the above approaches even if you do not unregister for push notification during logout and only do the re-registration of new user, that should suffice. Because, the re-registration implicitly unregisters the previous user for push notification.
In a shared device scenario, it has to be an application decision on the usage of either of the two scenarios and consequently understand the behaviors of each. Application developers have to make sure push notification is handled in one of the above mentioned ways.
Last update: July 30, 2021