Package org.hibernate.search.engine

Examples of org.hibernate.search.engine.WorkPlan


    return sealedAndUnchanged;
  }

  public WorkQueue(SearchFactoryImplementor searchFactoryImplementor) {
    this.searchFactoryImplementor = searchFactoryImplementor;
    this.plan = new WorkPlan( searchFactoryImplementor );
  }
View Full Code Here


  public WorkQueue splitQueue() {
    if ( log.isTraceEnabled() ) {
      log.trace( "Splitting workqueue with {} works", plan.size() );
    }
    WorkQueue subQueue = new WorkQueue( searchFactoryImplementor, plan );
    this.plan = new WorkPlan( searchFactoryImplementor );
    this.sealedAndUnchanged = false;
    return subQueue;
  }
View Full Code Here

TOP

Related Classes of org.hibernate.search.engine.WorkPlan

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.