java.lang.Object
org.snmp4j.util.TableUtils.InternalTableListener
- All Implemented Interfaces:
EventListener,TableListener
- Enclosing class:
TableUtils
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidfinished(TableEvent event) Indicates in a series of table events that no more events will follow.getRows()booleanIndicates whether the tree walk is complete or not.booleannext(TableEvent event) Consumes the next table event, which is typically the next row in a table retrieval operation.
-
Constructor Details
-
InternalTableListener
protected InternalTableListener()
-
-
Method Details
-
next
Description copied from interface:TableListenerConsumes the next table event, which is typically the next row in a table retrieval operation.- Specified by:
nextin interfaceTableListener- Parameters:
event- aTableEventinstance.- Returns:
trueif this listener wants to receive more events, otherwise returnfalse. For example, aTableListenercan returnfalseto stop table retrieval.
-
finished
Description copied from interface:TableListenerIndicates in a series of table events that no more events will follow.- Specified by:
finishedin interfaceTableListener- Parameters:
event- aTableEventinstance that will either indicate an error (RetrievalEvent.isError()returnstrue) or success of the table operation.
-
getRows
-
isFinished
public boolean isFinished()Description copied from interface:TableListenerIndicates whether the tree walk is complete or not.- Specified by:
isFinishedin interfaceTableListener- Returns:
trueif it is complete,falseotherwise.
-