Package oracle.nosql.driver.ops
Class MultiDeleteResult
java.lang.Object
oracle.nosql.driver.ops.Result
oracle.nosql.driver.ops.MultiDeleteResult
Represents the result of a 
NoSQLHandle.multiDelete(oracle.nosql.driver.ops.MultiDeleteRequest) operation.
 
 On a successful operation the number of rows deleted is available using
 getNumDeletions(). There is a limit to the amount of data consumed
 by a single call. If there are still more rows to delete, the
 continuation key can be get using getContinuationKey().
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbyte[]Returns the continuation key where the next MultiDelete request resume from.intReturns the number of rows deleted from the table.intReturns the read throughput consumed by this operation, in KBytes.intReturns the read throughput consumed by this operation, in read units.intReturns the write throughput consumed by this operation, in KBytes.intReturns the write throughput consumed by this operation, in write units.toString()Methods inherited from class oracle.nosql.driver.ops.ResultgetRateLimitDelayedMs, getRetryStats
- 
Constructor Details- 
MultiDeleteResultpublic MultiDeleteResult()
 
- 
- 
Method Details- 
getNumDeletionspublic int getNumDeletions()Returns the number of rows deleted from the table.- Returns:
- the number of rows deleted
 
- 
getContinuationKeypublic byte[] getContinuationKey()Returns the continuation key where the next MultiDelete request resume from.- Returns:
- the continuation key, or null if there are no more rows to delete.
 
- 
getReadKBpublic int getReadKB()Returns the read throughput consumed by this operation, in KBytes. This is the actual amount of data read by the operation. The number of read units consumed is returned bygetReadUnits()which may be a larger number because this was an update operation.- Returns:
- the read KBytes consumed
 
- 
getWriteKBpublic int getWriteKB()Returns the write throughput consumed by this operation, in KBytes.- Returns:
- the write KBytes consumed
 
- 
getReadUnitspublic int getReadUnits()Returns the read throughput consumed by this operation, in read units. This number may be larger than that returned bygetReadKB()because it was an update operation.- Returns:
- the read units consumed
 
- 
getWriteUnitspublic int getWriteUnits()Returns the write throughput consumed by this operation, in write units.- Returns:
- the write units consumed
 
- 
toString
 
-