Uses of Interface
org.snmp4j.transport.TransportListener
Packages that use TransportListener
Package
Description
Provides classes and interfaces for creating, sending, and receiving SNMP
messages.
Provides classes and interfaces for SNMP4J event processing.
Provides transport protocol mappings for SNMP.
Contains table retrieval utilities and multi-threading support classes as
well as miscellaneous utility classes.
-
Uses of TransportListener in org.snmp4j
Subinterfaces of TransportListener in org.snmp4jModifier and TypeInterfaceDescriptioninterface
TheMessageDispatcher
interface defines common services of instances that process incoming SNMP messages and dispatch them to interestedCommandResponder
instances.Classes in org.snmp4j that implement TransportListenerModifier and TypeClassDescriptionclass
TheMessageDispatcherImpl
decodes and dispatches incoming messages usingMessageProcessingModel
instances and encodes and sends outgoing messages using an appropriateTransportMapping
instances.Methods in org.snmp4j with parameters of type TransportListenerModifier and TypeMethodDescriptionvoid
TransportMapping.addTransportListener(TransportListener transportListener)
Adds a transport listener to the transport.void
TransportMapping.removeTransportListener(TransportListener transportListener)
Removes a transport listener. -
Uses of TransportListener in org.snmp4j.event
Constructors in org.snmp4j.event with parameters of type TransportListenerModifierConstructorDescriptionAuthenticationFailureEvent(TransportListener source, A sourceAddress, TransportMapping<? super A> transport, int error, BERInputStream message)
Creates an authentication failure event. -
Uses of TransportListener in org.snmp4j.tools.console
Classes in org.snmp4j.tools.console that implement TransportListenerModifier and TypeClassDescriptionclass
class
-
Uses of TransportListener in org.snmp4j.transport
Fields in org.snmp4j.transport with type parameters of type TransportListenerModifier and TypeFieldDescriptionprotected List<TransportListener>
AbstractTransportMapping.transportListener
Methods in org.snmp4j.transport with parameters of type TransportListenerModifier and TypeMethodDescriptionvoid
AbstractTransportMapping.addTransportListener(TransportListener l)
void
AbstractTransportMapping.removeTransportListener(TransportListener l)
-
Uses of TransportListener in org.snmp4j.util
Classes in org.snmp4j.util that implement TransportListenerModifier and TypeClassDescriptionclass
TheMultiThreadedMessageDispatcher
class is a decorator for anyMessageDispatcher
instances that processes incoming message with a suppliedThreadPool
.