You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Frank Tarsillo edited this page Jan 29, 2017
·
5 revisions
Until further notice, all real-time presence updates are now disabled. Presence poll methods could create significant stress on the Symphony POD instance.
The presence service is intended to keep track of all presence updates on a given Symphony instance (POD). This is handled through polling for the presence of all users on the network. Like other services, listeners can be registered supporting notification of presence changes.
//Retrieve presence service from symphony client.
symClient.getPresenceService()
Presence Listener
class aClass implements PresenceListener{
...
symClient.getPresenceService().addListener(this);
//Presence update from listener
void onUserPresence(UserPresence userPresence){
}