All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface webwisdom.tango.TControlListener

public interface TControlListener
Interface for system notifications to applications. The interface informs about the type of the change. The actual values of changed parameters can be checked with the application agent.

See Also:
addTControlListener

Method Index

 o audioRequested(boolean)
Called when audio device is requested or released by the system.
 o masterChanged(boolean, String)
This function is called everytime the session master of this session is changed.
 o participantJoined(String)
Called when a Tango user joins this session.
 o participantLeft(String)
Called when a participant of this session leaves this session.

Methods

 o masterChanged
 public abstract void masterChanged(boolean isMaster,
                                    String masterName)
This function is called everytime the session master of this session is changed.

See Also:
isMaster, getMasterName
 o participantJoined
 public abstract void participantJoined(String name)
Called when a Tango user joins this session.

See Also:
getParticipantNames
 o participantLeft
 public abstract void participantLeft(String name)
Called when a participant of this session leaves this session.

See Also:
getParticipantNames
 o audioRequested
 public abstract void audioRequested(boolean r)
Called when audio device is requested or released by the system. If audio is requested this application should stop using audio until it is released again.

See Also:
isAudioAvailable

All Packages  Class Hierarchy  This Package  Previous  Next  Index