Package org.snmp4j.model.snmp.proxy
Interface SnmpTableUpdateListener<R extends SnmpProxyRow>
- All Known Subinterfaces:
SnmpTable<C,
,IC, IT, T, R> SnmpTableRO<IC,
C, IT, T, R>
- All Known Implementing Classes:
SnmpTableImpl
,SnmpTableImplRO
public interface SnmpTableUpdateListener<R extends SnmpProxyRow>
The
SnmpTableUpdateListener
interface provides callbacks for table updates.- Author:
- Frank Fock
-
Method Summary
Modifier and TypeMethodDescriptionvoid
beginUpdate
(Object updateID) This method is called when a table update begins.void
finishUpdate
(Object updateID) This method is called when the update with the given update ID has been finished.void
This method is called when the provided row has been updated.
-
Method Details
-
beginUpdate
This method is called when a table update begins.- Parameters:
updateID
- the ID of the update procedure.
-
updateRow
This method is called when the provided row has been updated.- Parameters:
updateID
- the ID of the update procedure.updateRow
- the updated row.
-
finishUpdate
This method is called when the update with the given update ID has been finished.- Parameters:
updateID
- the ID of the update procedure.
-