-
- All Superinterfaces:
java.util.EventListener
- All Known Implementing Classes:
Snmp
,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:
- 1.0
- Author:
- Jochen Katz, Frank Fock
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
processPdu(CommandResponderEvent event)
Process an incoming request, report or notification PDU.
-
-
-
Method Detail
-
processPdu
void processPdu(CommandResponderEvent event)
Process an incoming request, report or notification PDU.- Parameters:
event
- aCommandResponderEvent
instance containing the PDU to process and some additional information returned by the message processing model that decoded the SNMP message.
-
-