Package org.snmp4j.util
Interface TreeListener
- All Superinterfaces:
EventListener
The
TreeListener interface is implemented by objects
listening for tree events.- Since:
- 1.8
- Version:
- 1.10
- Author:
- Frank Fock
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidIndicates in a series of tree events that no more events will follow.booleanIndicates whether the tree walk is complete or not.booleanConsumes the next table event, which is typically the next row in a table retrieval operation.
-
Method Details
-
next
Consumes the next table event, which is typically the next row in a table retrieval operation.- Parameters:
event- aTableEventinstance.- Returns:
trueif this listener wants to receive more events, otherwise returnfalse. For example, aTreeListenercan returnfalseto stop tree retrieval.
-
finished
Indicates in a series of tree events that no more events will follow.- Parameters:
event- aTreeEventinstance that will either indicate an error (RetrievalEvent.isError()returnstrue) or success of the tree retrieval operation.
-
isFinished
boolean isFinished()Indicates whether the tree walk is complete or not.- Returns:
trueif it is complete,falseotherwise.- Since:
- 1.10
-