Class PresenceManager
- java.lang.Object
-
- com.vaadin.collaborationengine.AbstractCollaborationManager
-
- com.vaadin.collaborationengine.PresenceManager
-
public class PresenceManager extends AbstractCollaborationManager
Manager to handle user presence in topics. It allows to set the user presence in the set topic and get a list of users currently set as present in the same topic. A handler can be set to react when the presence of a user changes.- Since:
- 3.2
- Author:
- Vaadin Ltd
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.vaadin.collaborationengine.AbstractCollaborationManager
AbstractCollaborationManager.ActivationHandler
-
-
Constructor Summary
Constructors Constructor Description PresenceManager(ConnectionContext context, UserInfo localUser, String topicId, CollaborationEngine collaborationEngine)Creates a new manager for the provided connection context.PresenceManager(Component component, UserInfo localUser, String topicId)Creates a new manager for the provided component.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidmarkAsPresent(boolean markAsPresent)Configures the manager to mark the local user present in the topic.voidsetNewUserHandler(NewUserHandler handler)Deprecated.UsesetPresenceHandler(PresenceHandler)insteadvoidsetPresenceHandler(PresenceHandler handler)Sets a handler which will be invoked when a user becomes present.-
Methods inherited from class com.vaadin.collaborationengine.AbstractCollaborationManager
close, getCollaborationEngine, getLocalUser, getTopicId, onConnectionFailed, openTopicConnection, setActivationHandler
-
-
-
-
Constructor Detail
-
PresenceManager
public PresenceManager(Component component, UserInfo localUser, String topicId)
Creates a new manager for the provided component.The provided user information is used to set the presence of the local user with
markAsPresent(boolean)(the default isfalse).- Parameters:
component- the component which holds UI access, notnulllocalUser- the information of the local user, notnulltopicId- the id of the topic to connect to, notnull
-
PresenceManager
public PresenceManager(ConnectionContext context, UserInfo localUser, String topicId, CollaborationEngine collaborationEngine)
Creates a new manager for the provided connection context.The provided user information is used to set the presence of the local user with
markAsPresent(boolean)(the default isfalse).- Parameters:
context- the context that manages connection status, notnulllocalUser- the information of the local user, notnulltopicId- the id of the topic to connect to, notnullcollaborationEngine- the collaboration engine instance to use, notnull
-
-
Method Detail
-
markAsPresent
public void markAsPresent(boolean markAsPresent)
Configures the manager to mark the local user present in the topic.If the user wasn't already present in the topic, all managers connected to the same topic will be notified of the change and their handlers will be applied to the user instance.
- Parameters:
markAsPresent-trueto mark the user as present in the topic,falseto set as not present
-
setNewUserHandler
@Deprecated public void setNewUserHandler(NewUserHandler handler)
Deprecated.UsesetPresenceHandler(PresenceHandler)insteadSets a handler which will be invoked when a user becomes present.The handler accepts a
UserInfoinstance as a parameter and should return aRegistrationwhich will be removed when the user stops being present.Replacing an existing handler will remove all registrations from the previous one.
- Parameters:
handler- the user presence handler, ornullto remove an existing handler
-
setPresenceHandler
public void setPresenceHandler(PresenceHandler handler)
Sets a handler which will be invoked when a user becomes present.The handler accepts a
PresenceHandler.PresenceContextinstance as a parameter and should return aRegistrationwhich will be removed when the user stops being present.Replacing an existing handler will remove all registrations from the previous one.
- Parameters:
handler- the user presence handler, ornullto remove an existing handler
-
-