Package | Description |
---|---|
org.voltdb.client |
Package containing code specific to the VoltDB Java Client Driver.
|
Modifier and Type | Method and Description |
---|---|
Client2CallOptions |
Client2CallOptions.clientTimeout(long timeout,
java.util.concurrent.TimeUnit unit)
Sets the client-side timeout for a procedure call.
|
Client2CallOptions |
Client2CallOptions.queryTimeout(long timeout,
java.util.concurrent.TimeUnit unit)
Sets the server-side query timeout for a read-only procedure call
or batch of procedure calls.
|
Client2CallOptions |
Client2CallOptions.requestPriority(int prio)
Sets the request priority for a procedure call.
|
Modifier and Type | Method and Description |
---|---|
java.util.concurrent.CompletableFuture<ClientResponseWithPartitionKey[]> |
Client2.callAllPartitionProcedureAsync(Client2CallOptions options,
java.lang.String procName,
java.lang.Object... parameters)
Asynchronously call an all-partition stored procedure.
|
ClientResponseWithPartitionKey[] |
Client2.callAllPartitionProcedureSync(Client2CallOptions options,
java.lang.String procName,
java.lang.Object... parameters)
Synchronously call an all-partition stored procedure.
|
java.util.concurrent.CompletableFuture<ClientResponse> |
Client2.callProcedureAsync(Client2CallOptions options,
java.lang.String procName,
java.lang.Object... parameters)
Asynchronously call stored procedure with optional overrides
for selected values.
|
ClientResponse |
Client2.callProcedureSync(Client2CallOptions options,
java.lang.String procName,
java.lang.Object... parameters)
Synchronously call stored procedure with optional overrides
for selected values.
|