Uses of Interface
org.springframework.data.cassandra.core.cql.legacy.AsyncResultSetExtractor
Package
Description
CQL legacy core asynchronous support for easier migration.
-
Uses of AsyncResultSetExtractor in org.springframework.data.cassandra.core.cql.legacy
Modifier and TypeClassDescriptionprotected static class
Deprecated, for removal: This API element is subject to removal in a future version.Adapter to enable use of aRowCallbackHandler
inside aResultSetExtractor
.class
Deprecated, for removal: This API element is subject to removal in a future version.Modifier and TypeMethodDescription<T> ListenableFuture<T>
AsyncCqlOperations.query
(com.datastax.oss.driver.api.core.cql.Statement<?> statement, AsyncResultSetExtractor<T> resultSetExtractor) Deprecated, for removal: This API element is subject to removal in a future version.Execute a query given static CQL, reading theResultSet
with aAsyncResultSetExtractor
.<T> ListenableFuture<T>
AsyncCqlOperations.query
(String cql, AsyncResultSetExtractor<T> resultSetExtractor) Deprecated, for removal: This API element is subject to removal in a future version.Execute a query given static CQL, reading theResultSet
with aAsyncResultSetExtractor
.<T> ListenableFuture<T>
AsyncCqlOperations.query
(String cql, AsyncResultSetExtractor<T> resultSetExtractor, Object... args) Deprecated, for removal: This API element is subject to removal in a future version.Query given CQL to create a prepared statement from CQL and a list of arguments to bind to the query, reading theResultSet
with aAsyncResultSetExtractor
.<T> ListenableFuture<T>
AsyncCqlOperations.query
(String cql, PreparedStatementBinder psb, AsyncResultSetExtractor<T> resultSetExtractor) Deprecated, for removal: This API element is subject to removal in a future version.Query using a prepared statement, reading theResultSet
with aAsyncResultSetExtractor
.<T> ListenableFuture<T>
AsyncCqlOperations.query
(AsyncPreparedStatementCreator preparedStatementCreator, AsyncResultSetExtractor<T> resultSetExtractor) Deprecated, for removal: This API element is subject to removal in a future version.Query using a prepared statement, reading theResultSet
with aAsyncResultSetExtractor
.<T> ListenableFuture<T>
AsyncCqlOperations.query
(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, AsyncResultSetExtractor<T> resultSetExtractor) Deprecated, for removal: This API element is subject to removal in a future version.Query using a prepared statement and aPreparedStatementBinder
implementation that knows how to bind values to the query, reading theResultSet
with aAsyncResultSetExtractor
.<T> ListenableFuture<T>
AsyncCqlTemplate.query
(com.datastax.oss.driver.api.core.cql.Statement<?> statement, AsyncResultSetExtractor<T> resultSetExtractor) Deprecated, for removal: This API element is subject to removal in a future version.<T> ListenableFuture<T>
AsyncCqlTemplate.query
(String cql, AsyncResultSetExtractor<T> resultSetExtractor) Deprecated, for removal: This API element is subject to removal in a future version.<T> ListenableFuture<T>
AsyncCqlTemplate.query
(String cql, AsyncResultSetExtractor<T> resultSetExtractor, Object... args) Deprecated, for removal: This API element is subject to removal in a future version.<T> ListenableFuture<T>
AsyncCqlTemplate.query
(String cql, PreparedStatementBinder psb, AsyncResultSetExtractor<T> resultSetExtractor) Deprecated, for removal: This API element is subject to removal in a future version.<T> ListenableFuture<T>
AsyncCqlTemplate.query
(AsyncPreparedStatementCreator preparedStatementCreator, AsyncResultSetExtractor<T> resultSetExtractor) Deprecated, for removal: This API element is subject to removal in a future version.<T> ListenableFuture<T>
AsyncCqlTemplate.query
(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, AsyncResultSetExtractor<T> resultSetExtractor) Deprecated, for removal: This API element is subject to removal in a future version.
CompletableFuture
-based variant.