-
- All Superinterfaces:
java.util.EventListener
- All Known Implementing Classes:
Snmp
,Snmp.NotificationDispatcher
,SnmpCommand
public interface CommandResponder extends java.util.EventListener
CommandResponder
process incoming request, report and notification PDUs. An event may only processed once. A command responder must therefore set theprocessed
member of the suppliedCommandResponderEvent
object totrue
when it has processed the PDU.- Version:
- 3.1.0
-
-
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
- aCommandResponderEvent
instance containing the PDU to process and some additional information returned by the message processing model that decoded the SNMP message.
-
-