T
- the row result typepublic interface RowsFetchSpec<T>
Modifier and Type | Method and Description |
---|---|
reactor.core.publisher.Flux<T> |
all()
Get all matching elements.
|
reactor.core.publisher.Mono<T> |
first()
Get the first or no result.
|
reactor.core.publisher.Mono<T> |
one()
Get exactly zero or one result.
|
reactor.core.publisher.Mono<T> one()
Mono.empty()
if no match found.
Completes with IncorrectResultSizeDataAccessException
if more than one match foundreactor.core.publisher.Mono<T> first()
Mono.empty()
if no match foundreactor.core.publisher.Flux<T> all()