Interface ReactiveSelectOperation.SelectWithQuery<T>
- All Superinterfaces:
ReactiveSelectOperation.TerminatingSelect<T>
- All Known Subinterfaces:
ReactiveSelectOperation.ReactiveSelect<T>, ReactiveSelectOperation.SelectWithProjection<T>, ReactiveSelectOperation.SelectWithTable<T>
- Enclosing interface:
ReactiveSelectOperation
public static interface ReactiveSelectOperation.SelectWithQuery<T>
extends ReactiveSelectOperation.TerminatingSelect<T>
Define a
Query used as the filter for the SELECT.- Since:
- 1.1
- Author:
- Mark Paluch, Mikhail Polivakha
-
Method Summary
Modifier and TypeMethodDescriptionSet theQueryused as a filter in theSELECTstatement.withFetchSize(int fetchSize) Specifies the fetch size for this query.
-
Method Details
-
withFetchSize
Specifies the fetch size for this query.- Parameters:
fetchSize- the fetch size- Returns:
- new instance of
ReactiveSelectOperation.SelectWithQuery. - Since:
- 3.4
- See Also:
-
matching
Set theQueryused as a filter in theSELECTstatement.- Parameters:
query-Queryused as a filter; must not be null.- Returns:
- new instance of
ReactiveSelectOperation.TerminatingSelect. - Throws:
IllegalArgumentException- ifQueryis null.- See Also:
-