Package org.snmp4j.model.snmp.proxy
Interface MutableSnmpProxy
- All Known Subinterfaces:
SnmpTable<C,
IC, IT, T, R>
- All Known Implementing Classes:
SnmpTableImpl
public interface MutableSnmpProxy
The MutableSnmpProxy interface provides a method to change a proxied value
of a
SnmpProxyObject
.- Author:
- Frank Fock
-
Method Summary
Modifier and TypeMethodDescriptionboolean
doChange
(SnmpValuesChangeSet changeSet) Perform a change by adding it to the committer queue.boolean
undoChange
(SnmpValuesChangeSet changeSet) Undo a change by adding the compensation change to the committer queue.
-
Method Details
-
getCommitter
SnmpProxyCommitter getCommitter() -
doChange
Perform a change by adding it to the committer queue.- Parameters:
changeSet
- the change to perform atomically.- Returns:
true
if the change passed validation and thus was successfully added to the queue.
-
undoChange
Undo a change by adding the compensation change to the committer queue.- Parameters:
changeSet
- the change to undo atomically.- Returns:
true
if the undo change passed validation and thus was successfully added to the queue.
-