-
- All Superinterfaces:
java.util.EventListener
- All Known Implementing Classes:
Snmp,SnmpCommand
public interface CommandResponder extends java.util.EventListenerCommandResponderprocess incoming request, report and notification PDUs. An event may only processed once. A command responder must therefore set theprocessedmember of the suppliedCommandResponderEventobject totruewhen it has processed the PDU.- Version:
- 3.1.0
- Author:
- Jochen Katz, Frank Fock
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <A extends Address>
voidprocessPdu(CommandResponderEvent<A> event)Process an incoming request, report or notification PDU.
-
-
-
Method Detail
-
processPdu
<A extends Address> void processPdu(CommandResponderEvent<A> event)
Process an incoming request, report or notification PDU.- Type Parameters:
A- type of the peerAddress.- Parameters:
event- aCommandResponderEventinstance containing the PDU to process and some additional information returned by the message processing model that decoded the SNMP message.
-
-