Class WriteMultipleRequest
NoSQLHandle.writeMultiple(oracle.nosql.driver.ops.WriteMultipleRequest) operation.
 This request can be used to perform a sequence of PutRequest or
 DeleteRequest operations associated with a table that share the same
 shard key portion of their primary keys, the WriteMultiple
 operation as whole is atomic. It is an efficient way to atomically modify
 multiple related rows.
 
 On a successful operation WriteMultipleResult.getSuccess() returns
 true. The execution result of each operations can be retrieved using
 WriteMultipleResult.getResults().
 
 If the WriteMultiple operation is aborted because of the failure of an
 operation with abortIfUnsuccessful set to true, then
 WriteMultipleResult.getSuccess() return false, the index of failed
 operation can be accessed using
 WriteMultipleResult.getFailedOperationIndex(), and the execution
 result of failed operation can be accessed using
 WriteMultipleResult.getFailedOperationResult().
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionAdds a Request to the operation list.voidclear()Removes all of the operations from the WriteMultiple request.intReturns the number of Requests.getRequest(int index) Returns the Request at the given position, it may be either aPutRequestor aDeleteRequestobject.intReturns the timeout to use for the operation, in milliseconds.Returns the type name of the request.setCompartment(String compartment) Cloud service only.setDurability(Durability durability) Sets the durability to use for the operation.setNamespace(String namespace) Sets the optional namespace.setTimeout(int timeoutMs) Sets the request timeout value, in milliseconds.Methods inherited from class oracle.nosql.driver.ops.DurableRequestgetDurabilityMethods inherited from class oracle.nosql.driver.ops.RequestgetCompartment, getNamespace, getRateLimitDelayedMs, getReadRateLimiter, getRetryStats, getTableName, getWriteRateLimiter, setReadRateLimiter, setWriteRateLimiter
- 
Constructor Details- 
WriteMultipleRequestpublic WriteMultipleRequest()Constructs an empty request
 
- 
- 
Method Details- 
addAdds a Request to the operation list.- Parameters:
- request- the Request to add, either- PutRequestor- DeleteRequest.
- abortIfUnsuccessful- is true if this operation should cause the entire WriteMultiple operation to abort when this operation fails.
- Returns:
- this
- Throws:
- BatchOperationNumberLimitException- if the number of requests exceeds the limit, or IllegalArgumentException if the request is neither a- PutRequestor- DeleteRequest. or any invalid state of the Request.
 
- 
setCompartmentCloud service only.Sets the name or id of a compartment to be used for this operation. The compartment may be specified as either a name (or path for nested compartments) or as an id (OCID). A name (vs id) can only be used when authenticated using a specific user identity. It is not available if authenticated as an Instance Principal which can be done when calling the service from a compute instance in the Oracle Cloud Infrastructure. See SignatureProvider.createWithInstancePrincipal()- Parameters:
- compartment- the name or id. If using a nested compartment, specify the full compartment path- compartmentA.compartmentB, but exclude the name of the root compartment (tenant).
- Returns:
- this
 
- 
getTimeoutpublic int getTimeout()Returns the timeout to use for the operation, in milliseconds. A value of 0 indicates that the timeout has not been set.- Returns:
- the value
 
- 
getNumOperationspublic int getNumOperations()Returns the number of Requests.- Returns:
- the number of Requests
 
- 
getRequestReturns the Request at the given position, it may be either aPutRequestor aDeleteRequestobject.- Parameters:
- index- the position of Request to get
- Returns:
- the Request at the given position
- Throws:
- IndexOutOfBoundsException- if the position is negative or greater or equal to the number of Requests.
 
- 
setTimeoutSets the request timeout value, in milliseconds. This overrides any default value set withNoSQLHandleConfig.setRequestTimeout(int). The value must be positive.- Parameters:
- timeoutMs- the timeout value, in milliseconds
- Returns:
- this
- Throws:
- IllegalArgumentException- if the timeout value is less than or equal to 0
 
- 
setNamespaceSets the optional namespace. On-premises only. This overrides any default value set withNoSQLHandleConfig.setDefaultNamespace(java.lang.String). Note: if a namespace is specified in the table name for the request (using the namespace:tablename format), that value will override this setting.- Parameters:
- namespace- the namespace to use for the operation
- Returns:
- this
- Since:
- 5.4.10
 
- 
clearpublic void clear()Removes all of the operations from the WriteMultiple request.
- 
setDurabilitySets the durability to use for the operation. On-premises only.- Parameters:
- durability- the durability value. Set to null for the default durability setting on the kvstore server.
- Returns:
- this
- Since:
- 5.3.0
 
- 
getTypeNameDescription copied from class:RequestReturns the type name of the request. This is used for stats.- Specified by:
- getTypeNamein class- Request
- Returns:
- the type name of the request
 
 
-