Package org.hibernate.reactive.query.spi
Interface ReactiveNativeSelectQueryPlan<T>
-
- All Superinterfaces:
NativeQueryPlan
,NativeSelectQueryPlan<T>
,QueryPlan
,ReactiveSelectQueryPlan<T>
,SelectQueryPlan<T>
public interface ReactiveNativeSelectQueryPlan<T> extends NativeSelectQueryPlan<T>, ReactiveSelectQueryPlan<T>
-
-
Field Summary
Fields Modifier and Type Field Description static org.hibernate.reactive.logging.impl.Log
LOG
-
Method Summary
All Methods Instance Methods Default Methods Deprecated Methods Modifier and Type Method Description default List<T>
performList(DomainQueryExecutionContext executionContext)
Deprecated.not a reactive methoddefault ScrollableResultsImplementor<T>
performScroll(ScrollMode scrollMode, DomainQueryExecutionContext executionContext)
Deprecated.not a reactive method-
Methods inherited from interface org.hibernate.reactive.query.sqm.spi.ReactiveSelectQueryPlan
reactivePerformList
-
-
-
-
Method Detail
-
performList
@Deprecated default List<T> performList(DomainQueryExecutionContext executionContext)
Deprecated.not a reactive method- Specified by:
performList
in interfaceReactiveSelectQueryPlan<T>
- Specified by:
performList
in interfaceSelectQueryPlan<T>
-
performScroll
@Deprecated default ScrollableResultsImplementor<T> performScroll(ScrollMode scrollMode, DomainQueryExecutionContext executionContext)
Deprecated.not a reactive method- Specified by:
performScroll
in interfaceReactiveSelectQueryPlan<T>
- Specified by:
performScroll
in interfaceSelectQueryPlan<T>
-
-