Interface ReactiveSelectQueryPlan<R>
-
- All Superinterfaces:
QueryPlan
,SelectQueryPlan<R>
- All Known Subinterfaces:
ReactiveNativeSelectQueryPlan<T>
public interface ReactiveSelectQueryPlan<R> extends SelectQueryPlan<R>
- See Also:
SelectQueryPlan
-
-
Field Summary
Fields Modifier and Type Field Description static org.hibernate.reactive.logging.impl.Log
LOG
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default List<R>
performList(DomainQueryExecutionContext executionContext)
default ScrollableResultsImplementor<R>
performScroll(ScrollMode scrollMode, DomainQueryExecutionContext executionContext)
CompletionStage<List<R>>
reactivePerformList(DomainQueryExecutionContext executionContext)
Perform (execute) the query returning a List
-
-
-
Method Detail
-
performList
default List<R> performList(DomainQueryExecutionContext executionContext)
- Specified by:
performList
in interfaceSelectQueryPlan<R>
-
performScroll
default ScrollableResultsImplementor<R> performScroll(ScrollMode scrollMode, DomainQueryExecutionContext executionContext)
- Specified by:
performScroll
in interfaceSelectQueryPlan<R>
-
reactivePerformList
CompletionStage<List<R>> reactivePerformList(DomainQueryExecutionContext executionContext)
Perform (execute) the query returning a List
-
-