Package org.snmp4j.uri
Interface SnmpUriCallback
public interface SnmpUriCallback
The
SnmpUriCallback interface is used by asynchronous
methods of the SnmpURI class to provide instances of
SnmpUriResponse to the caller.- Since:
- 2.1
- Author:
- Frank Fock
-
Method Summary
Modifier and TypeMethodDescriptionbooleanonResponse(SnmpUriResponse response, URI url, Object userObject) Process a response on the request
-
Method Details
-
onResponse
Process a response on the request- Parameters:
response- aSnmpUriResponseinstance with some or all of the requested data or an error status. If theSnmpUriResponse.getResponseType()isSnmpUriResponse.Type.NEXTthen additional calls for this request will follow, otherwise not.url- the URI that was used as request for this response.userObject- an arbitrary object provided on the asynchronous call on the request processor.- Returns:
trueif the request should be cancelled,falseotherwise.
-