public class StoreView<K extends Comparable<K>,V> extends Object
| Modifier and Type | Method and Description |
|---|---|
Mono<Long> |
count()
Retrieves the amount of stored values in the data source currently.
|
Flux<Tuple2<K,V>> |
entries()
Gets a stream of all entries in the data source.
|
Mono<V> |
find(K id)
Attempts to find the value associated with the provided id.
|
Flux<V> |
findInRange(K start,
K end)
Retrieves all stored values with ids within a provided range.
|
Flux<K> |
keys()
Gets a stream of all keys in the data source.
|
Flux<V> |
values()
Gets a stream of all values in the data source.
|
public Mono<V> find(K id)
id - The id to search with.public Flux<V> findInRange(K start, K end)
start - The starting key (inclusive).end - The ending key (exclusive).public Mono<Long> count()
public Flux<K> keys()
public Flux<V> values()