Package org.snmp4j.agent
Interface MOServerLookupListener
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
Snmp4jLogMib
An object that is interested in callback notifications of lookup events
on a
MOServer instance has to implement the
MOServerLookupListener interface.- Version:
- 1.1
- Author:
- Frank Fock
-
Method Summary
Modifier and TypeMethodDescriptionvoidlookupEvent(MOServerLookupEvent event) AMOServerinstance has looked up a managed object for which the listener has been registered.voidqueryEvent(MOServerLookupEvent event) AMOServerinstance is about to check if the managed object for which the listener had been registered matches a query.
-
Method Details
-
lookupEvent
AMOServerinstance has looked up a managed object for which the listener has been registered.- Parameters:
event- aMOServerLookupEventdescribing the lookup query and the managed object that has been looked up.
-
queryEvent
AMOServerinstance is about to check if the managed object for which the listener had been registered matches a query. A managed object with dynamic content like a non-static table might use this event to update its content.- Parameters:
event- aMOServerLookupEventdescribing the lookup query and the managed object that is to be queried.
-