Class ReactiveNativeSelectQueryPlanImpl<R>

  • All Implemented Interfaces:
    org.hibernate.query.spi.QueryPlan, org.hibernate.query.spi.SelectQueryPlan, org.hibernate.query.sql.spi.NativeQueryPlan, org.hibernate.query.sql.spi.NativeSelectQueryPlan, ReactiveNativeSelectQueryPlan, ReactiveSelectQueryPlan

    public class ReactiveNativeSelectQueryPlanImpl<R>
    extends org.hibernate.query.sql.internal.NativeSelectQueryPlanImpl
    implements ReactiveNativeSelectQueryPlan
    • Constructor Summary

      Constructors 
      Constructor Description
      ReactiveNativeSelectQueryPlanImpl​(java.lang.String sql, java.util.Set<java.lang.String> affectedTableNames, java.util.List<org.hibernate.query.sql.spi.ParameterOccurrence> parameterList, org.hibernate.query.results.ResultSetMapping resultSetMapping, org.hibernate.engine.spi.SessionFactoryImplementor sessionFactory)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.concurrent.CompletionStage<java.util.List<R>> reactivePerformList​(org.hibernate.query.spi.DomainQueryExecutionContext executionContext)
      Perform (execute) the query returning a List
      • Methods inherited from class org.hibernate.query.sql.internal.NativeSelectQueryPlanImpl

        performList, performScroll
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ReactiveNativeSelectQueryPlanImpl

        public ReactiveNativeSelectQueryPlanImpl​(java.lang.String sql,
                                                 java.util.Set<java.lang.String> affectedTableNames,
                                                 java.util.List<org.hibernate.query.sql.spi.ParameterOccurrence> parameterList,
                                                 org.hibernate.query.results.ResultSetMapping resultSetMapping,
                                                 org.hibernate.engine.spi.SessionFactoryImplementor sessionFactory)
    • Method Detail

      • reactivePerformList

        public java.util.concurrent.CompletionStage<java.util.List<R>> reactivePerformList​(org.hibernate.query.spi.DomainQueryExecutionContext executionContext)
        Description copied from interface: ReactiveSelectQueryPlan
        Perform (execute) the query returning a List
        Specified by:
        reactivePerformList in interface ReactiveSelectQueryPlan<R>