Package it.unibz.instasearch.jobs

Examples of it.unibz.instasearch.jobs.IndexingJob


   * Starts the indexing job
   *
   */
  public void createIndex() {
    if( indexingJob == null ) {
      indexingJob = new IndexingJob(indexer);
      indexingJob.setPriority(Job.LONG); // long running job
    } else if( isIndexing() )
      return;
   
    indexingJob.schedule();
View Full Code Here

TOP

Related Classes of it.unibz.instasearch.jobs.IndexingJob

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.