All Packages Class Hierarchy This Package Previous Next Index
Class iBus.ChannelMember
java.lang.Object
|
+----iBus.ChannelMember
- public class ChannelMember
- extends Object
- implements Serializable
ChannelMember encapsulates information associated with a channel member,
notably its URL and whether it is a listener, a talker, or both.
A View object
mainly consists of a vector of ChannelMember objects.
- See Also:
- View
-
ChannelMember(iBusURL, boolean, boolean)
- Create a ChannelMember object for a given url.
-
getURL()
- Retrieve the URL of the channel member.
-
isListener()
- Checks whether the channel member is a listener.
-
isTalker()
- Checks whether the channel member is a talker.
ChannelMember
public ChannelMember(iBusURL url,
boolean isListener,
boolean isTalker)
- Create a ChannelMember object for a given url.
- Parameters:
- url - the URL of the channel member
- isListener - true if the member is a listener
- isTalker - true if the member is a talker
getURL
public iBusURL getURL()
- Retrieve the URL of the channel member.
- Returns:
- the URL of the channel member
isListener
public boolean isListener()
- Checks whether the channel member is a listener.
- Returns:
- true if the channel member is a listener
isTalker
public boolean isTalker()
- Checks whether the channel member is a talker.
- Returns:
- true if the channel member is a talker
All Packages Class Hierarchy This Package Previous Next Index