Module org.snmp4j.agent
Package org.snmp4j.agent.mo
Interface MOTableRowListener<R extends MOTableRow>
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
LogMOTableSizeLimit,MOTableRelation.RelationShipListener,MOTableSizeLimit,RowStatus,Snmp4jLogMib,Snmp4jProxyMib,SnmpTargetMIB,UsmMIB
A
MOTableRowListener can be informed about row changes.- Version:
- 2.2
- Author:
- Frank Fock
-
Method Summary
Modifier and TypeMethodDescriptionvoidrowChanged(MOTableRowEvent<R> event) A column or a complete row is changed/has been changed.
-
Method Details
-
rowChanged
A column or a complete row is changed/has been changed.- Parameters:
event- aMOTableRowEventdescribing the event. To veto the event theMOTableRowEvent.setVetoStatus(int)and optionally also theMOTableRowEvent.setVetoColumn(int)can be called. IfMOTableRowEvent.getNumberOfConsecutiveEventsOfSameOrigin()is greater than zero you need to setMOTableRowEvent.setSendNextEventsOfSameOrigin(boolean)totruein order to receive those consecutive events too. Otherwise they will be ignored and not been propagated to this listener.
-