Package | Description |
---|---|
org.voltdb.client |
Package containing code specific to the VoltDB Java Client Driver.
|
Modifier and Type | Field and Description |
---|---|
ClientResponse |
ClientResponseWithPartitionKey.response |
Modifier and Type | Method and Description |
---|---|
ClientResponse |
Client.callProcedure(java.lang.String procName,
java.lang.Object... parameters)
Synchronously invoke a procedure.
|
ClientResponse |
Client.callProcedureWithTimeout(int queryTimeout,
java.lang.String procName,
java.lang.Object... parameters)
Synchronously invoke a procedure with timeout.
|
ClientResponse |
ProcCallException.getClientResponse()
When a ProcCallException has a response from the server, retrieve it with this method.
|
ClientResponse |
SyncCallback.getResponse()
Retrieve the ClientResponse returned for this procedure invocation.
|
ClientResponse |
Client.updateApplicationCatalog(java.io.File catalogPath,
java.io.File deploymentPath)
Deprecated.
|
ClientResponse |
Client.updateClasses(java.io.File jarPath,
java.lang.String classesToDelete)
Synchronously invokes UpdateClasses procedure.
|
Modifier and Type | Method and Description |
---|---|
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,
java.lang.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 |
ClientStatusListener.uncaughtException(ProcedureCallback callback,
ClientResponse r,
java.lang.Throwable e)
Deprecated.
Called when a
ProcedureCallback.clientCallback(ClientResponse) invocation throws
an exception. |
void |
ClientStatusListenerExt.uncaughtException(ProcedureCallback callback,
ClientResponse r,
java.lang.Throwable e)
Called when a
ProcedureCallback.clientCallback(ClientResponse) invocation throws
an exception. |