Package play.modules.elasticsearch

Examples of play.modules.elasticsearch.ElasticSearchIndexEvent


    Logger.info("RabbitMQ Consumer Actor: %s", o);
   
    // Check Message Type
    if ( o instanceof ElasticSearchIndexEvent ) {
      // Get Index Event
      ElasticSearchIndexEvent indexEvent = (ElasticSearchIndexEvent)o;
     
      // Fire Index Action
      ElasticSearchIndexAction indexAction = new ElasticSearchIndexAction();
      indexAction.invoke(indexEvent);
     
View Full Code Here

TOP

Related Classes of play.modules.elasticsearch.ElasticSearchIndexEvent

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.