Uses of Interface
org.voltdb.client.ClientResponse
-
Uses of ClientResponse in org.voltdb.client
Modifier and TypeMethodDescriptionClient.callProcedure
(String procName, Object... parameters) Invoke a procedure.Client2.callProcedureSync
(String procName, Object... parameters) Synchronously call stored procedure.Client2.callProcedureSync
(Client2CallOptions options, String procName, Object... parameters) Synchronously call stored procedure with optional overrides for selected values.Client.callProcedureWithClientTimeout
(int queryTimeout, String procName, long clientTimeout, TimeUnit unit, Object... parameters) Synchronously invoke a procedure call, blocking until a result is available, with caller-specified client timeout and query timeout.Client.callProcedureWithTimeout
(int queryTimeout, String procName, Object... parameters) Invoke a procedure with specified query timeout.ProcCallException.getClientResponse()
When a ProcCallException has a response from the server, retrieve it with this method.SyncCallback.getResponse()
Retrieve the ClientResponse returned for this procedure invocation.static ClientResponse
Synchronously updates class definitions.Client.updateClasses
(File jarPath, String classesToDelete) Synchronously updates class definitions in the VoltDB database.static ClientResponse
UpdateClasses.updateSync
(Client2 client, File jarPath, String classesToDelete) Synchronously updates class definitions via a "version 2" client.Modifier and TypeMethodDescriptionClient2.callProcedureAsync
(String procName, Object... parameters) Asynchronously call stored procedure.Client2.callProcedureAsync
(Client2CallOptions options, String procName, Object... parameters) Asynchronously call stored procedure with optional overrides for selected values.static CompletableFuture<ClientResponse>
UpdateClasses.updateAsync
(Client2 client, File jarPath, String classesToDelete) Asynchronously updates class definitions via a "version 2" client.Modifier and TypeMethodDescriptionvoid
Client2Notification.LateResponse.accept
(ClientResponse resp, String host, int port) void
NullCallback.clientCallback
(ClientResponse clientResponse) void
ProcedureCallback.clientCallback
(ClientResponse clientResponse) Implementation of callback to be provided by client applications.void
SyncCallback.clientCallback
(ClientResponse clientResponse) void
ClientStatusListenerExt.lateProcedureResponse
(ClientResponse r, String hostname, int port) Called when a response arrives on a connection that has already had its callback called due to an elapsed timeout.void
ClientStatusListenerExt.uncaughtException
(ProcedureCallback callback, ClientResponse r, Throwable e) Called when aProcedureCallback.clientCallback(ClientResponse)
invocation throws an exception.ModifierConstructorDescriptionClientResponseWithPartitionKey
(Object partitionKey, ClientResponse response, int partitionId)