| org.sakaiproject.chat2.model.PresenceObserver
All known Subclasses: org.sakaiproject.chat2.tool.ChatTool,
PresenceObserver | public interface PresenceObserver (Code) | | any class that wants to observer users joining and leaving a location should
implement this class and then open a new PresenceObserverHelper(this, "location")
author: andersjb |
userJoined | public void userJoined(String location, String user)(Code) | | This is called by the PresenceObserverHelper when a user joins a location
Parameters: location - the user is joining this location Parameters: user - the user joining |
userLeft | public void userLeft(String location, String user)(Code) | | This is called by the PresenceObserverHelper when a user leaves a location
Parameters: location - the user is leaving this location Parameters: user - the user leaving |
|
|