Interface SnmpProxyReloadListener


public interface SnmpProxyReloadListener
The SnmpProxyReloadListener interface receives updates on the reload status of proxy objects.
Author:
Frank Fock
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    The reload operation for the specified proxy object has failed (most likely the reload was not executed at all or only partyl).
    void
    The reload operation for the specified proxy object has been finished.
  • Method Details

    • reloadFinished

      void reloadFinished(SnmpProxyObject proxyObject)
      The reload operation for the specified proxy object has been finished.
      Parameters:
      proxyObject - the proxy object that was reloaded.
    • reloadFailed

      void reloadFailed(SnmpProxyObject proxyObject, SnmpErrorStatus status)
      The reload operation for the specified proxy object has failed (most likely the reload was not executed at all or only partyl).
      Parameters:
      proxyObject - the proxy object that should have been reloaded.
      status - the SNMP error status indicating the failure reason.