-
Methods in org.springframework.data.aerospike.core with parameters of type Query
| Modifier and Type |
Method |
Description |
<T> long |
AerospikeOperations.count(Query query,
Class<T> entityClass) |
Return the amount of documents in a query results. set name will be determined by the given entityClass.
|
<T> long |
AerospikeTemplate.count(Query query,
Class<T> entityClass) |
|
<T> reactor.core.publisher.Mono<Long> |
ReactiveAerospikeOperations.count(Query query,
Class<T> entityClass) |
Reactively return the amount of documents in a query results. set name will be determined by the given entityClass.
|
<T> reactor.core.publisher.Mono<Long> |
ReactiveAerospikeTemplate.count(Query query,
Class<T> entityClass) |
|
<T> boolean |
AerospikeTemplate.exists(Query query,
Class<T> entityClass) |
|
<T> Stream<T> |
AerospikeOperations.find(Query query,
Class<T> entityClass) |
Find documents in the given entityClass's set using a query and map them to the given class type.
|
<T> Stream<T> |
AerospikeTemplate.find(Query query,
Class<T> entityClass) |
|
<T> reactor.core.publisher.Flux<T> |
ReactiveAerospikeOperations.find(Query query,
Class<T> entityClass) |
Reactively find documents in the given entityClass's set using a query and map them to the given class type.
|
<T> reactor.core.publisher.Flux<T> |
ReactiveAerospikeTemplate.find(Query query,
Class<T> entityClass) |
|
-