Examples of IndexMessage


Examples of org.vosao.business.mq.message.IndexMessage

      getBusiness().getSearchEngine().saveIndex();
      logger.info("Reindex finished. Reindexed " + count + " pages.");
    }
    catch (RequestTimeoutException e) {
      getBusiness().getSearchEngine().saveIndex();
      getBusiness().getMessageQueue().publish(new IndexMessage(
          currentNumber));
      logger.info("Reindexed " + count + " pages");
    }
    catch(Exception e) {
      logger.error(e.getMessage());
View Full Code Here

Examples of org.vosao.business.mq.message.IndexMessage

  public void reindex() {
    for (LanguageEntity language : getDao().getLanguageDao().select()) {
      getSearchIndex(language.getCode()).clear();
      getSearchIndex(language.getCode()).saveIndex();
    }
    getBusiness().getMessageQueue().publish(new IndexMessage());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.