int resultCode = receiveBuffer[5] & 0xFF;
// The only valid server return codes are "ok" and "not found".
// If other return codes are received, then abort the batch.
if (resultCode != 0 && resultCode != ResultCode.KEY_NOT_FOUND_ERROR) {
throw new AerospikeException(resultCode);
}
byte info3 = receiveBuffer[3];
// If this is the end marker of the response, do not proceed further