public interface SnmpAsyncOperations
| Modifier and Type | Method and Description |
|---|---|
void |
asyncGet(SnmpCallback<VarbindCollection> callback,
List<String> oids)
Invokes an asynchronous SNMP GET operation.
|
void |
asyncGet(SnmpCallback<VarbindCollection> callback,
String... oids)
Invokes an asynchronous SNMP GET operation.
|
void |
asyncGet(SnmpCallback<VarbindCollection> callback,
VarbindCollection varbinds)
Invokes an asynchronous SNMP GET operation.
|
void |
asyncGetBulk(SnmpCallback<List<VarbindCollection>> callback,
int nonRepeaters,
int maxRepetitions,
List<String> oids)
Invokes an asynchronous SNMP GETBULK operation.
|
void |
asyncGetBulk(SnmpCallback<List<VarbindCollection>> callback,
int nonRepeaters,
int maxRepetitions,
String... oids)
Invokes an asynchronous SNMP GETBULK operation.
|
void |
asyncGetBulk(SnmpCallback<List<VarbindCollection>> callback,
int nonRepeaters,
int maxRepetitions,
VarbindCollection varbinds)
Invokes an asynchronous SNMP GETBULK operation.
|
void |
asyncGetNext(SnmpCallback<VarbindCollection> callback,
List<String> oids)
Invokes an asynchronous SNMP GETNEXT operation.
|
void |
asyncGetNext(SnmpCallback<VarbindCollection> callback,
String... oids)
Invokes an asynchronous SNMP GETNEXT operation.
|
void |
asyncGetNext(SnmpCallback<VarbindCollection> callback,
VarbindCollection varbinds)
Invokes an asynchronous SNMP GETNEXT operation.
|
void |
asyncWalk(SnmpCallback<SnmpAsyncWalker<VarbindCollection>> callback,
int nonRepeaters,
List<String> oids)
Invokes an asynchronous walk on a conceptual table.
|
void |
asyncWalk(SnmpCallback<SnmpAsyncWalker<VarbindCollection>> callback,
int nonRepeaters,
String... oids)
Invokes an asynchronous walk on a conceptual table.
|
void |
asyncWalk(SnmpCallback<SnmpAsyncWalker<VarbindCollection>> callback,
List<String> repeaters)
Invokes an asynchronous walk on a conceptual table.
|
void |
asyncWalk(SnmpCallback<SnmpAsyncWalker<VarbindCollection>> callback,
List<String> nonRepeaters,
List<String> repeaters)
Invokes an asynchronous walk on a conceptual table.
|
void |
asyncWalk(SnmpCallback<SnmpAsyncWalker<VarbindCollection>> callback,
String... repeaters)
Invokes an asynchronous walk on a conceptual table.
|
void asyncGet(SnmpCallback<VarbindCollection> callback, List<String> oids)
callback - callback to invoke when a response is availableoids - MIB names or dotted-decimal object identifiers for the
objects to fetchvoid asyncGet(SnmpCallback<VarbindCollection> callback, VarbindCollection varbinds)
callback - callback to invoke when a response is availablevarbinds - a collection identifying the objects to fetchvoid asyncGet(SnmpCallback<VarbindCollection> callback, String... oids)
callback - callback to invoke when a response is availableoids - MIB names or dotted-decimal object identifiers for the
objects to fetchvoid asyncGetNext(SnmpCallback<VarbindCollection> callback, List<String> oids)
callback - callback to invoke when a response is availableoids - MIB names or dotted-decimal object identifiers for the
objects to fetchvoid asyncGetNext(SnmpCallback<VarbindCollection> callback, VarbindCollection varbinds)
callback - callback to invoke when a response is availablevarbinds - a collection identifying the objects to fetchvoid asyncGetNext(SnmpCallback<VarbindCollection> callback, String... oids)
callback - callback to invoke when a response is availableoids - MIB names or dotted-decimal object identifiers for the
objects to fetchvoid asyncGetBulk(SnmpCallback<List<VarbindCollection>> callback, int nonRepeaters, int maxRepetitions, List<String> oids)
callback - callback to invoke when a response is availablenonRepeaters - number of non-repeating objects at the beginning of
oids.maxRepetitions - maximum number of repetitions to retrieve for the
repeating objects in oidsoids - MIB names or dotted-decimal object identifiers for the
objects to fetch; the first nonRepeaters identifiers in the list
are assumed to be non-repeating objectsvoid asyncGetBulk(SnmpCallback<List<VarbindCollection>> callback, int nonRepeaters, int maxRepetitions, VarbindCollection varbinds)
callback - callback to invoke when a response is availablenonRepeaters - number of non-repeating objects at the beginning of
oids.maxRepetitions - maximum number of repetitions to retrieve for the
repeating objects in oidsvarbinds - a collection identifying the objects to fetchvoid asyncGetBulk(SnmpCallback<List<VarbindCollection>> callback, int nonRepeaters, int maxRepetitions, String... oids)
callback - callback to invoke when a response is availablenonRepeaters - number of non-repeating objects at the beginning of
oids.maxRepetitions - maximum number of repetitions to retrieve for the
repeating objects in oidsoids - MIB names or dotted-decimal object identifiers for the
objects to fetch; the first nonRepeaters identifiers in the
list are assumed to be for non-repeating objectsvoid asyncWalk(SnmpCallback<SnmpAsyncWalker<VarbindCollection>> callback, int nonRepeaters, List<String> oids)
callback - to invoke when a walker becomes availableoids - MIB names or dotted-decimal object identifiers; the first
nonRepeaters identifiers in the list are assumed to be for
non-repeating objectsvoid asyncWalk(SnmpCallback<SnmpAsyncWalker<VarbindCollection>> callback, int nonRepeaters, String... oids)
callback - to invoke when a walker becomes availablenonRepeaters - number of non-repeating objects at the beginning
of oidsoids - MIB names or dotted-decimal object identifiers; the first
nonRepeaters identifiers in the list are assumed to be for
non-repeating objectsvoid asyncWalk(SnmpCallback<SnmpAsyncWalker<VarbindCollection>> callback, List<String> nonRepeaters, List<String> repeaters)
callback - to invoke when a walker becomes availablenonRepeaters - MIB names or dotted-decimal object identifiers
for the non-repeating elements to retrieverepeaters - MIB names or dotted-decimal object identifiers
for the table column elements to retrievevoid asyncWalk(SnmpCallback<SnmpAsyncWalker<VarbindCollection>> callback, List<String> repeaters)
callback - to invoke when a walker becomes availablerepeaters - MIB names or dotted-decimal object identifiers
for the table column elements to retrievevoid asyncWalk(SnmpCallback<SnmpAsyncWalker<VarbindCollection>> callback, String... repeaters)
callback - to invoke when a walker becomes availablerepeaters - MIB names or dotted-decimal object identifiers
for the table column elements to retrieveCopyright © 2012–2015. All rights reserved.