Uses of Interface
com.google.cloud.spanner.AsyncResultSet
Packages that use AsyncResultSet
Package
Description
A client for Cloud Spanner - A no-compromise relational database service.
Internal API for Google Cloud Spanner.
-
Uses of AsyncResultSet in com.google.cloud.spanner
Classes in com.google.cloud.spanner that implement AsyncResultSetModifier and TypeClassDescriptionclassForwarding implementation ofAsyncResultSetthat forwards all calls to a delegate.Methods in com.google.cloud.spanner that return AsyncResultSetModifier and TypeMethodDescriptionReadContext.executeQueryAsync(Statement statement, Options.QueryOption... options) Same asReadContext.executeQuery(Statement, QueryOption...), but is guaranteed to be non-blocking and returns its results as anAsyncResultSet.ReadContext.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.ReadContext.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 AsyncResultSetModifier and TypeMethodDescriptionAsyncResultSet.ReadyCallback.cursorReady(AsyncResultSet resultSet) Constructors in com.google.cloud.spanner with parameters of type AsyncResultSet -
Uses of AsyncResultSet in com.google.cloud.spanner.connection
Methods in com.google.cloud.spanner.connection that return AsyncResultSetModifier and TypeMethodDescriptionConnection.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.AsyncStatementResult.getResultSetAsync()Returns theAsyncResultSetheld by this result.