Package org.snmp4j.model.snmp.spi
Interface SnmpProxyReloadListener
public interface SnmpProxyReloadListener
The
SnmpProxyReloadListener
interface receives updates on the reload status of proxy objects.- Author:
- Frank Fock
-
Method Summary
Modifier and TypeMethodDescriptionvoid
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).void
reloadFinished
(SnmpProxyObject proxyObject) The reload operation for the specified proxy object has been finished.
-
Method Details
-
reloadFinished
The reload operation for the specified proxy object has been finished.- Parameters:
proxyObject
- the proxy object that was reloaded.
-
reloadFailed
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.
-