Interface AsyncStatementResult (6.89.0)

publicinterfaceAsyncStatementResultextendsStatementResult

Implements

StatementResult

Methods

getNoResultAsync()

publicabstractApiFuture<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.

Returns
TypeDescription
ApiFuture<Void>

getResultSetAsync()

publicabstractAsyncResultSetgetResultSetAsync()

Returns the AsyncResultSet held by this result. May only be called if the type of this result is ResultType#RESULT_SET.

Returns
TypeDescription
AsyncResultSet

the AsyncResultSet held by this result.

getUpdateCountAsync()

publicabstractApiFuture<Long>getUpdateCountAsync()

Returns the update count held by this result. May only be called if the type of this result is ResultType#UPDATE_COUNT.

Returns
TypeDescription
ApiFuture<Long>

the update count held by this result.