Package com.dotmarketing.quartz.job

Examples of com.dotmarketing.quartz.job.ContentReindexerThread


      }

      if(Config.getBooleanProperty("ENABLE_CONTENT_REINDEXATION_THREAD")) {
        try {
          ScheduledThreadPoolExecutor scheduledThreadPoolExecutor = new ScheduledThreadPoolExecutor(1);
          scheduledThreadPoolExecutor.scheduleWithFixedDelay(new ContentReindexerThread(), Config.getIntProperty("EXEC_CONTENT_REINDEXATION_INIT_DELAY"), Config.getIntProperty("EXEC_CONTENT_REINDEXATION_DELAY"), TimeUnit.SECONDS);
        } catch (Exception e) {
          Logger.info(DotInitScheduler.class, e.toString());
        }
      } else {
            Logger.info(DotInitScheduler.class, "Automatic Content Reindexation Cron Thread schedule disabled on this server");
View Full Code Here

TOP

Related Classes of com.dotmarketing.quartz.job.ContentReindexerThread

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.