Uses of Class
org.snmp4j.event.ResponseEvent
-
Packages that use ResponseEvent Package Description org.snmp4j Provides classes and interfaces for creating, sending, and receiving SNMP messages.org.snmp4j.event Provides classes and interfaces for SNMP4J event processing.org.snmp4j.fluent org.snmp4j.tools.console org.snmp4j.uri org.snmp4j.util Contains table retrieval utilities and multi-threading support classes as well as miscellaneous utility classes. -
-
Uses of ResponseEvent in org.snmp4j
Fields in org.snmp4j declared as ResponseEvent Modifier and Type Field Description private ResponseEvent<A>
Snmp.SyncResponseListener. response
Methods in org.snmp4j that return ResponseEvent Modifier and Type Method Description <A extends Address>
ResponseEvent<A>Snmp. get(PDU pdu, Target<A> target)
Sends a GET request to a target.<A extends Address>
ResponseEvent<A>Snmp. getBulk(PDU pdu, Target<A> target)
Sends a GETBULK request to a target.<A extends Address>
ResponseEvent<A>Snmp. getNext(PDU pdu, Target<A> target)
Sends a GETNEXT request to a target.ResponseEvent<A>
Snmp.SyncResponseListener. getResponse()
<A extends Address>
ResponseEvent<A>Snmp. inform(PDU pdu, Target<A> target)
Sends an INFORM request to a target.<A extends Address>
ResponseEvent<A>Session. send(PDU pdu, Target<A> target)
Sends aPDU
to the given target and returns the received responsePDU
.<A extends Address>
ResponseEvent<A>Session. send(PDU pdu, Target<A> target, TransportMapping<? super A> transport)
Sends aPDU
to the given target and returns the received responsePDU
encapsulated in aResponseEvent
object that also includes: the transport address of the response sending peer, theTarget
information of the target, the requestPDU
, the responsePDU
(if any).<A extends Address>
ResponseEvent<A>Snmp. send(PDU pdu, Target<A> target)
<A extends Address>
ResponseEvent<A>Snmp. send(PDU pdu, Target<A> target, TransportMapping<? super A> transport)
Sends aPDU
to the given target and if thePDU
is a confirmed request, then the received response is returned synchronously.private <A extends Address>
ResponseEvent<A>Snmp. send(PDU pdu, Target<A> target, TransportMapping<? super A> transport, int maxRequestStatus)
<A extends Address>
ResponseEvent<A>Snmp. set(PDU pdu, Target<A> target)
Sends a SET request to a target.Methods in org.snmp4j with parameters of type ResponseEvent Modifier and Type Method Description <AA extends Address>
voidSnmp.SyncResponseListener. onResponse(ResponseEvent<AA> event)
-
Uses of ResponseEvent in org.snmp4j.event
Methods in org.snmp4j.event with parameters of type ResponseEvent Modifier and Type Method Description <A extends Address>
voidResponseListener. onResponse(ResponseEvent<A> event)
Process a SNMP response. -
Uses of ResponseEvent in org.snmp4j.fluent
Fields in org.snmp4j.fluent declared as ResponseEvent Modifier and Type Field Description private ResponseEvent<?>
SnmpCompletableFuture. responseEvent
Methods in org.snmp4j.fluent that return ResponseEvent Modifier and Type Method Description ResponseEvent<?>
SnmpCompletableFuture. getResponseEvent()
Methods in org.snmp4j.fluent with parameters of type ResponseEvent Modifier and Type Method Description <A extends Address>
voidSnmpCompletableFuture. onResponse(ResponseEvent<A> event)
-
Uses of ResponseEvent in org.snmp4j.tools.console
Methods in org.snmp4j.tools.console with parameters of type ResponseEvent Modifier and Type Method Description private <A extends Address>
voidLogControl. verifyLoggerModification(Snmp snmp, Target<A> target, PDU pdu, OID levelOID, java.lang.String logger, OID loggerIndex, java.lang.String newLevel, ResponseEvent<A> response)
-
Uses of ResponseEvent in org.snmp4j.uri
Methods in org.snmp4j.uri with parameters of type ResponseEvent Modifier and Type Method Description <A extends Address>
voidSnmpURI.AsyncResponseListener. onResponse(ResponseEvent<A> event)
-
Uses of ResponseEvent in org.snmp4j.util
Methods in org.snmp4j.util that return ResponseEvent Modifier and Type Method Description <A extends Address>
ResponseEvent<A>TableUtils. createRow(Target<A> target, OID rowStatusColumnOID, OID rowIndex, VariableBinding[] values)
Creates a SNMP table row for a table that supports the RowStatus mechanism for row creation.<A extends Address>
ResponseEvent<A>TableUtils. destroyRow(Target<A> target, OID rowStatusColumnOID, OID rowIndex)
Destroys a SNMP table row from a table that support the RowStatus mechanism for row creation/deletion.Methods in org.snmp4j.util with parameters of type ResponseEvent Modifier and Type Method Description protected <A extends Address>
booleanTableUtils.TableRequest. checkResponse(ResponseEvent<A> event)
<A extends Address>
voidTableUtils.DenseTableRequest. onResponse(ResponseEvent<A> event)
<A extends Address>
voidTableUtils.TableRequest. onResponse(ResponseEvent<A> event)
<A extends Address>
voidTreeUtils.TreeRequest. onResponse(ResponseEvent<A> event)
-