Uses of Class
com.aerospike.client.BatchRecord
Packages that use BatchRecord
-
Uses of BatchRecord in com.aerospike.client
Subclasses of BatchRecord in com.aerospike.clientModifier and TypeClassDescriptionfinal classBatch delete operation.final classBatch key and read only operations with default policy.final classBatch user defined functions.final classBatch key and read/write operations with write policy.Fields in com.aerospike.client declared as BatchRecordModifier and TypeFieldDescriptionfinal BatchRecord[]AerospikeException.BatchRecordArray.recordsfinal BatchRecord[]BatchResults.recordsRecord results.final BatchRecord[]AerospikeException.Commit.rollRecordsRoll forward/backward result for each write key in the MRT.final BatchRecord[]AerospikeException.Commit.verifyRecordsVerify result for each read key in the MRT.Methods in com.aerospike.client with parameters of type BatchRecordModifier and TypeMethodDescriptionbooleanBatchDelete.equals(BatchRecord obj) Optimized reference equality check to determine batch wire protocol repeat flag.booleanBatchRead.equals(BatchRecord obj) Optimized reference equality check to determine batch wire protocol repeat flag.booleanBatchRecord.equals(BatchRecord other) Optimized reference equality check to determine batch wire protocol repeat flag.booleanBatchUDF.equals(BatchRecord obj) Optimized reference equality check to determine batch wire protocol repeat flag.booleanBatchWrite.equals(BatchRecord obj) Optimized reference equality check to determine batch wire protocol repeat flag.Method parameters in com.aerospike.client with type arguments of type BatchRecordModifier and TypeMethodDescriptionfinal voidAerospikeClient.operate(EventLoop eventLoop, BatchOperateListListener listener, BatchPolicy policy, List<BatchRecord> records) Asynchronously read/write multiple records for specified batch keys in one batch call.final voidAerospikeClient.operate(EventLoop eventLoop, BatchRecordSequenceListener listener, BatchPolicy policy, List<BatchRecord> records) Asynchronously read/write multiple records for specified batch keys in one batch call.final booleanAerospikeClient.operate(BatchPolicy policy, List<BatchRecord> records) Read/Write multiple records for specified batch keys in one batch call.voidIAerospikeClient.operate(EventLoop eventLoop, BatchOperateListListener listener, BatchPolicy policy, List<BatchRecord> records) Asynchronously read/write multiple records for specified batch keys in one batch call.voidIAerospikeClient.operate(EventLoop eventLoop, BatchRecordSequenceListener listener, BatchPolicy policy, List<BatchRecord> records) Asynchronously read/write multiple records for specified batch keys in one batch call.booleanIAerospikeClient.operate(BatchPolicy policy, List<BatchRecord> records) Read/Write multiple records for specified batch keys in one batch call.Constructors in com.aerospike.client with parameters of type BatchRecordModifierConstructorDescriptionBatchRecordArray(BatchRecord[] records, String message, Throwable e) BatchRecordArray(BatchRecord[] records, Throwable e) BatchResults(BatchRecord[] records, boolean status) Constructor.Commit(CommitError error, BatchRecord[] verifyRecords, BatchRecord[] rollRecords) Commit(CommitError error, BatchRecord[] verifyRecords, BatchRecord[] rollRecords, Throwable cause) -
Uses of BatchRecord in com.aerospike.client.listener
Methods in com.aerospike.client.listener with parameters of type BatchRecordModifier and TypeMethodDescriptionvoidBatchRecordArrayListener.onFailure(BatchRecord[] records, AerospikeException ae) This method is called when one or more keys fail.voidBatchRecordSequenceListener.onRecord(BatchRecord record, int index) This method is called when a record is received from the server.voidBatchRecordArrayListener.onSuccess(BatchRecord[] records, boolean status) This method is called when the command completes successfully.Method parameters in com.aerospike.client.listener with type arguments of type BatchRecordModifier and TypeMethodDescriptionvoidBatchOperateListListener.onSuccess(List<BatchRecord> records, boolean status) This method is called when the command completes successfully.