public void getBulkAsync(final A address, final int maxRepetitions, final int nonRepeaters,
final ResponseListener listener, final Object handle, final OID... oids) throws IOException {
checkNoNulls(address, listener, oids);
final Target target = this.createTarget(address);
final PDU requestPdu = this.createRequestPdu(PDU.GETBULK, target, VariableBindings.wrapOids(oids));
requestPdu.setMaxRepetitions(maxRepetitions);
requestPdu.setNonRepeaters(nonRepeaters);
this.getSnmp().send(requestPdu, target, handle, listener);
}