Uses of Interface
com.google.cloud.spanner.AsyncResultSet
-
Packages that use AsyncResultSet Package Description com.google.cloud.spanner A client for Cloud Spanner - A no-compromise relational database service.com.google.cloud.spanner.connection Internal API for Google Cloud Spanner. -
-
Uses of AsyncResultSet in com.google.cloud.spanner
Classes in com.google.cloud.spanner that implement AsyncResultSet Modifier and Type Class Description classForwardingAsyncResultSetForwarding implementation ofAsyncResultSetthat forwards all calls to a delegate.Methods in com.google.cloud.spanner that return AsyncResultSet Modifier and Type Method Description AsyncResultSetReadContext. executeQueryAsync(Statement statement, Options.QueryOption... options)Same asReadContext.executeQuery(Statement, QueryOption...), but is guaranteed to be non-blocking and returns its results as anAsyncResultSet.AsyncResultSetReadContext. readAsync(String table, KeySet keys, Iterable<String> columns, Options.ReadOption... options)Same asReadContext.read(String, KeySet, Iterable, ReadOption...), but is guaranteed to be non-blocking and will return the results as anAsyncResultSet.AsyncResultSetReadContext. readUsingIndexAsync(String table, String index, KeySet keys, Iterable<String> columns, Options.ReadOption... options)Same asReadContext.readUsingIndex(String, String, KeySet, Iterable, ReadOption...), but is guaranteed to be non-blocking and will return its results as anAsyncResultSet.static AsyncResultSetResultSets. toAsyncResultSet(com.google.api.core.ApiFuture<ResultSet> delegate, com.google.api.gax.core.ExecutorProvider executorProvider, Options.QueryOption... options)Converts theResultSetthat will be returned by the givenApiFutureto anAsyncResultSetusing the givenExecutorProvider.static AsyncResultSetResultSets. toAsyncResultSet(ResultSet delegate)Converts the givenResultSetto anAsyncResultSet.static AsyncResultSetResultSets. toAsyncResultSet(ResultSet delegate, com.google.api.gax.core.ExecutorProvider executorProvider, Options.QueryOption... options)Methods in com.google.cloud.spanner with parameters of type AsyncResultSet Modifier and Type Method Description AsyncResultSet.CallbackResponseAsyncResultSet.ReadyCallback. cursorReady(AsyncResultSet resultSet)Constructors in com.google.cloud.spanner with parameters of type AsyncResultSet Constructor Description ForwardingAsyncResultSet(AsyncResultSet delegate) -
Uses of AsyncResultSet in com.google.cloud.spanner.connection
Methods in com.google.cloud.spanner.connection that return AsyncResultSet Modifier and Type Method Description AsyncResultSetConnection. executeQueryAsync(Statement query, Options.QueryOption... options)Executes the given statement (a query or a DML statement with returning clause) asynchronously and returns the result as anAsyncResultSet.AsyncResultSetAsyncStatementResult. getResultSetAsync()Returns theAsyncResultSetheld by this result.
-