protected void parseRow(Key key) throws AerospikeException {
if (opCount > 0) {
throw new AerospikeException.Parse("Received bins that were not requested!");
}
BatchItem item = keyMap.get(key);
if (item != null) {
int index = item.getIndex();
existsArray[index] = resultCode == 0;
}
else {
if (Log.debugEnabled()) {
Log.debug("Unexpected batch key returned: " + key.namespace + ',' + Buffer.bytesToHexString(key.digest));