Interface AsyncStatementResult

All Superinterfaces:
StatementResult

@InternalApi public interface AsyncStatementResult extends StatementResult
  • Method Details

    • getResultSetAsync

      AsyncResultSet getResultSetAsync()
      Returns the AsyncResultSet held by this result. May only be called if the type of this result is StatementResult.ResultType.RESULT_SET.
      Returns:
      the AsyncResultSet held by this result.
    • getUpdateCountAsync

      com.google.api.core.ApiFuture<Long> getUpdateCountAsync()
      Returns the update count held by this result. May only be called if the type of this result is StatementResult.ResultType.UPDATE_COUNT.
      Returns:
      the update count held by this result.
    • getNoResultAsync

      com.google.api.core.ApiFuture<Void> getNoResultAsync()
      Returns a future that tracks the progress of a statement that returns no result. This could be a DDL statement or a client side statement that does not return a result.