org.globus.wsrf
Interface TopicListenerList

All Known Subinterfaces:
Topic, TopicList
All Known Implementing Classes:
ResourcePropertyTopic, SimpleTopic, SimpleTopicList

public interface TopicListenerList

Interface used for managing a list of topic listeners. Currently inherited by the TopicList and Topic interfaces.

See Also:
TopicListener, TopicList, Topic

Method Summary
 void addTopicListener(TopicListener listener)
          Add a topic listener
 void removeTopicListener(TopicListener listener)
          Remove a topic listener
 Iterator topicListenerIterator()
          Get a iterator for the list of TopicListeners
 

Method Detail

addTopicListener

public void addTopicListener(TopicListener listener)
Add a topic listener

Parameters:
listener - The topic listener to add
See Also:
TopicListener

removeTopicListener

public void removeTopicListener(TopicListener listener)
Remove a topic listener

Parameters:
listener - The topic listener to remove.
See Also:
TopicListener

topicListenerIterator

public Iterator topicListenerIterator()
Get a iterator for the list of TopicListeners

Returns:
The iterator
See Also:
TopicListener