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 Type
    Method
    Description
    void
    Implementation of callback to be provided by client applications.
  • Method Details

    • clientCallback

      void clientCallback(ClientResponseWithPartitionKey[] responses) throws Exception
      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.