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 Type
    Method
    Description
    void
    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
    updateRow(Object updateID, R updateRow)
    This method is called when the provided row has been updated.
  • Method Details

    • beginUpdate

      void beginUpdate(Object updateID)
      This method is called when a table update begins.
      Parameters:
      updateID - the ID of the update procedure.
    • updateRow

      void updateRow(Object updateID, R 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

      void finishUpdate(Object updateID)
      This method is called when the update with the given update ID has been finished.
      Parameters:
      updateID - the ID of the update procedure.