Interface RowsFetchSpec<T>
- Type Parameters:
T- the row result type
- All Known Subinterfaces:
FetchSpec<T>
public interface RowsFetchSpec<T>
Contract for fetching tabular results.
- Since:
- 5.3
- Author:
- Mark Paluch
-
Method Summary
-
Method Details
-
one
Get exactly zero or one result.- Returns:
- a Mono emitting one element, or
Mono.empty()if no match found. Completes withIncorrectResultSizeDataAccessExceptionif more than one match found
-
first
Get the first or no result.- Returns:
- a Mono emitting the first element, or
Mono.empty()if no match found
-
all
-