public static interface ReactiveSelectOperation.TerminatingSelect<T>
SELECT execution by calling one of the terminating methods.| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Flux<T> |
all()
Get all matching elements.
|
reactor.core.publisher.Mono<Long> |
count()
Get the number of matching elements.
|
reactor.core.publisher.Mono<Boolean> |
exists()
Check for the presence of matching elements.
|
reactor.core.publisher.Mono<T> |
first()
Get the first result or no result.
|
reactor.core.publisher.Mono<T> |
one()
Get exactly zero or one result.
|
reactor.core.publisher.Mono<Long> count()
Mono emitting the total number of matching elements; never null.Monoreactor.core.publisher.Mono<Boolean> exists()
Mono emitting true if at least one matching element exists;
never null.Monoreactor.core.publisher.Mono<T> first()
Mono.empty() if no match found; never null.Monoreactor.core.publisher.Mono<T> one()
Mono.empty() if no match found; never null.IncorrectResultSizeDataAccessException - if more than one match found.Monoreactor.core.publisher.Flux<T> all()
FluxCopyright © 2011–2018 Pivotal Software, Inc.. All rights reserved.