| Package | Description |
|---|---|
| org.springframework.cassandra.core |
CQL core support.
|
| Modifier and Type | Method and Description |
|---|---|
<T> Cancellable |
CqlTemplate.queryForObjectAsynchronously(com.datastax.driver.core.querybuilder.Select select,
Class<T> requiredType,
QueryForObjectListener<T> listener) |
<T> Cancellable |
CqlOperations.queryForObjectAsynchronously(com.datastax.driver.core.querybuilder.Select select,
Class<T> requiredType,
QueryForObjectListener<T> listener)
Executes the provided
Select query and returns the first column of the first Row as an object of type
T. |
<T> Cancellable |
CqlTemplate.queryForObjectAsynchronously(com.datastax.driver.core.querybuilder.Select select,
RowMapper<T> rowMapper,
QueryForObjectListener<T> listener) |
<T> Cancellable |
CqlOperations.queryForObjectAsynchronously(com.datastax.driver.core.querybuilder.Select select,
RowMapper<T> rowMapper,
QueryForObjectListener<T> listener)
Executes the provided
Select query, and maps the first row returned with the supplied RowMapper. |
<T> Cancellable |
CqlTemplate.queryForObjectAsynchronously(String cql,
Class<T> requiredType,
QueryForObjectListener<T> listener) |
<T> Cancellable |
CqlOperations.queryForObjectAsynchronously(String cql,
Class<T> requiredType,
QueryForObjectListener<T> listener)
Executes the provided select CQL query and returns the first column of the first Row as an object of type
T. |
<T> Cancellable |
CqlTemplate.queryForObjectAsynchronously(String cql,
Class<T> requiredType,
QueryForObjectListener<T> listener,
QueryOptions options) |
<T> Cancellable |
CqlOperations.queryForObjectAsynchronously(String cql,
Class<T> requiredType,
QueryForObjectListener<T> listener,
QueryOptions options)
Executes the provided select CQL query and returns the first column of the first Row as an object of type
T. |
<T> Cancellable |
CqlTemplate.queryForObjectAsynchronously(String cql,
RowMapper<T> rowMapper,
QueryForObjectListener<T> listener) |
<T> Cancellable |
CqlOperations.queryForObjectAsynchronously(String cql,
RowMapper<T> rowMapper,
QueryForObjectListener<T> listener)
Executes the provided string CQL query, and maps the first row returned with the supplied
RowMapper. |
<T> Cancellable |
CqlTemplate.queryForObjectAsynchronously(String cql,
RowMapper<T> rowMapper,
QueryForObjectListener<T> listener,
QueryOptions options) |
<T> Cancellable |
CqlOperations.queryForObjectAsynchronously(String cql,
RowMapper<T> rowMapper,
QueryForObjectListener<T> listener,
QueryOptions options)
Executes the provided string CQL query, and maps the first row returned with the supplied
RowMapper. |
Copyright © 2011–2019 Pivotal Software, Inc.. All rights reserved.