Package org.voltdb.client
Interface AllPartitionProcedureCallback
public interface AllPartitionProcedureCallback
Interface for callbacks that are invoked when an asynchronously invoked transaction receives a response.
Extend this class and provide an implementation of
clientCallback(org.voltdb.client.ClientResponseWithPartitionKey[])
to receive a response to a
stored procedure invocation on all partitions.-
Method Summary
Modifier and TypeMethodDescriptionvoid
clientCallback
(ClientResponseWithPartitionKey[] responses) Implementation of callback to be provided by client applications.
-
Method Details
-
clientCallback
Implementation of callback to be provided by client applications.- Parameters:
responses
- Responses for each partition to the stored procedure invocation this callback is associated with- Throws:
Exception
- on any Exception.
-