Uses of Interface
org.springframework.data.cassandra.core.cql.legacy.AsyncPreparedStatementCreator
Packages that use AsyncPreparedStatementCreator
Package
Description
CQL legacy core asynchronous support for easier migration.
Apache Cassandra legacy asynchronous support for easier migration.
-
Uses of AsyncPreparedStatementCreator in org.springframework.data.cassandra.core.cql.legacy
Methods in org.springframework.data.cassandra.core.cql.legacy that return AsyncPreparedStatementCreatorModifier and TypeMethodDescriptionprotected AsyncPreparedStatementCreatorAsyncCqlTemplate.newAsyncPreparedStatementCreator(String cql) Deprecated, for removal: This API element is subject to removal in a future version.Create a new CQL-basedAsyncPreparedStatementCreatorusing the CQL passed in.Methods in org.springframework.data.cassandra.core.cql.legacy with parameters of type AsyncPreparedStatementCreatorModifier and TypeMethodDescriptionAsyncCqlOperations.execute(AsyncPreparedStatementCreator preparedStatementCreator) Deprecated, for removal: This API element is subject to removal in a future version.Issue a single CQL execute operation (such as an insert, update or delete statement) using aAsyncPreparedStatementCreatorto provide CQL and any required parameters.<T> ListenableFuture<T>AsyncCqlOperations.execute(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementCallback<T> action) Deprecated, for removal: This API element is subject to removal in a future version.Execute a CQL data access operation, implemented as callback action working on a CQLPreparedStatement.AsyncCqlTemplate.execute(AsyncPreparedStatementCreator preparedStatementCreator) Deprecated, for removal: This API element is subject to removal in a future version.<T> ListenableFuture<T>AsyncCqlTemplate.execute(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementCallback<T> action) Deprecated, for removal: This API element is subject to removal in a future version.<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 theResultSetwith 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 aPreparedStatementBinderimplementation that knows how to bind values to the query, reading theResultSetwith aAsyncResultSetExtractor.AsyncCqlOperations.query(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) Deprecated, for removal: This API element is subject to removal in a future version.Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, reading theResultSeton a per-row basis with aRowCallbackHandler.<T> ListenableFuture<List<T>>AsyncCqlOperations.query(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowMapper<T> rowMapper) Deprecated, for removal: This API element is subject to removal in a future version.Query using a prepared statement and aPreparedStatementBinderimplementation that knows how to bind values to the query, mapping each row to a Java object via aRowMapper.AsyncCqlOperations.query(AsyncPreparedStatementCreator preparedStatementCreator, RowCallbackHandler rowCallbackHandler) Deprecated, for removal: This API element is subject to removal in a future version.Query using a prepared statement, reading theResultSeton a per-row basis with aRowCallbackHandler.<T> ListenableFuture<List<T>>AsyncCqlOperations.query(AsyncPreparedStatementCreator preparedStatementCreator, RowMapper<T> rowMapper) Deprecated, for removal: This API element is subject to removal in a future version.Query using a prepared statement, mapping each row to a Java object via aRowMapper.<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.AsyncCqlTemplate.query(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowCallbackHandler rowCallbackHandler) Deprecated, for removal: This API element is subject to removal in a future version.<T> ListenableFuture<List<T>>AsyncCqlTemplate.query(AsyncPreparedStatementCreator preparedStatementCreator, PreparedStatementBinder psb, RowMapper<T> rowMapper) Deprecated, for removal: This API element is subject to removal in a future version.AsyncCqlTemplate.query(AsyncPreparedStatementCreator preparedStatementCreator, RowCallbackHandler rowCallbackHandler) Deprecated, for removal: This API element is subject to removal in a future version.<T> ListenableFuture<List<T>>AsyncCqlTemplate.query(AsyncPreparedStatementCreator preparedStatementCreator, RowMapper<T> rowMapper) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of AsyncPreparedStatementCreator in org.springframework.data.cassandra.core.legacy
Subinterfaces of AsyncPreparedStatementCreator in org.springframework.data.cassandra.core.legacyModifier and TypeInterfaceDescriptionstatic interfaceDeprecated, for removal: This API element is subject to removal in a future version.General callback interface used to create and bind prepared CQL statements.Classes in org.springframework.data.cassandra.core.legacy that implement AsyncPreparedStatementCreatorModifier and TypeClassDescriptionstatic classDeprecated, for removal: This API element is subject to removal in a future version.Utility class to prepare aSimpleStatementand bind values associated with the statement to aBoundStatement.