Uses of Class
oracle.nosql.driver.ops.Request
-
Packages that use Request Package Description oracle.nosql.driver Contains the public API for using the Oracle NoSQL Database as well as configuration and common parameter classes used in database operations.oracle.nosql.driver.iam This package contains the public API for managing security for the Oracle NoSQL Database Cloud using Oracle Cloud Infrastructure Identity and Access Management (IAM).oracle.nosql.driver.ops Contains the input and response classes used for Oracle NoSQL Database operations.oracle.nosql.driver.ops.serde -
-
Uses of Request in oracle.nosql.driver
Methods in oracle.nosql.driver with parameters of type Request Modifier and Type Method Description static intDefaultRetryHandler. computeBackoffDelay(Request request, int fixedDelayMs)Compute an incremental backoff delay in milliseconds.voidDefaultRetryHandler. delay(Request request, int numRetries, RetryableException re)Delay (sleep) during retry cycle.voidRetryHandler. delay(Request request, int numRetries, RetryableException re)This method is called when aRetryableExceptionis thrown and it is determined that the request will be retried based on the return value ofRetryHandler.doRetry(oracle.nosql.driver.ops.Request, int, oracle.nosql.driver.RetryableException).booleanDefaultRetryHandler. doRetry(Request request, int numRetries, RetryableException re)Decide whether to retry or not.booleanRetryHandler. doRetry(Request request, int numRetries, RetryableException re)This method is called when aRetryableExceptionis thrown and determines whether to perform a retry or not based on the parameters.StringAuthorizationProvider. getAuthorizationString(Request request)Returns an authorization string for specified request.default voidAuthorizationProvider. setRequiredHeaders(String authString, Request request, io.netty.handler.codec.http.HttpHeaders headers)Set HTTP headers required by the provider. -
Uses of Request in oracle.nosql.driver.iam
Methods in oracle.nosql.driver.iam with parameters of type Request Modifier and Type Method Description StringSignatureProvider. getAuthorizationString(Request request)voidSignatureProvider. setRequiredHeaders(String authString, Request request, io.netty.handler.codec.http.HttpHeaders headers) -
Uses of Request in oracle.nosql.driver.ops
Subclasses of Request in oracle.nosql.driver.ops Modifier and Type Class Description classDeleteRequestRepresents the input to aNoSQLHandle.delete(oracle.nosql.driver.ops.DeleteRequest)operation.classGetIndexesRequestRepresents the argument of aNoSQLHandle.getIndexes(oracle.nosql.driver.ops.GetIndexesRequest)operation which returns the information of a specific index or all indexes of the specified table, as returned inGetIndexesResult.classGetRequestRepresents the input to aNoSQLHandle.get(oracle.nosql.driver.ops.GetRequest)operation which returns a single row based on the specified key.classGetTableRequestRepresents the argument of aNoSQLHandle.getTable(oracle.nosql.driver.ops.GetTableRequest)operation which returns static information associated with a table, as returned inTableResult.classListTablesRequestRepresents the argument of aNoSQLHandle.listTables(oracle.nosql.driver.ops.ListTablesRequest)operation which lists all available tables associated with the identity associated with the handle used for the operation.classMultiDeleteRequestRepresents the input to aNoSQLHandle.multiDelete(oracle.nosql.driver.ops.MultiDeleteRequest)operation which can be used to delete a range of values that match the primary key and range provided.classPrepareRequestA request that encapsulates a query prepare call.classPutRequestRepresents the input to aNoSQLHandle.put(oracle.nosql.driver.ops.PutRequest)operation.classQueryRequestA request that represents a query.classSystemRequestOn-premise only.classSystemStatusRequestOn-premise only.classTableRequestTableRequest is used to create, modify, and drop tables.classTableUsageRequestCloud service only.classWriteMultipleRequestRepresents the input to aNoSQLHandle.writeMultiple(oracle.nosql.driver.ops.WriteMultipleRequest)operation.Methods in oracle.nosql.driver.ops that return Request Modifier and Type Method Description RequestWriteMultipleRequest. getRequest(int index)Returns the Request at the given position, it may be either aPutRequestor aDeleteRequestobject.Methods in oracle.nosql.driver.ops with parameters of type Request Modifier and Type Method Description WriteMultipleRequestWriteMultipleRequest. add(Request request, boolean abortIfUnsuccessful)Adds a Request to the operation list. -
Uses of Request in oracle.nosql.driver.ops.serde
Methods in oracle.nosql.driver.ops.serde with parameters of type Request Modifier and Type Method Description static voidBinaryProtocol. checkRequestSizeLimit(Request request, int requestSize)ResultSerializer. deserialize(Request request, oracle.nosql.driver.util.ByteInputStream in, short serialVersion)voidSerializer. serialize(Request request, short serialVersion, oracle.nosql.driver.util.ByteOutputStream out)
-