Package play.db.Model

Examples of play.db.Model.Factory.fetch()


      Logger.info("Reindexing %s entities of type %s", count, modelClass);

      long offset = 0;
      // loop over pages
      while (offset < count) {
        final List results = factory.fetch((int) offset, PAGE_SIZE, null, null, null, null, null);
        // loop over individual entities within one page
        for (final Object o : results) {
          ElasticSearch.index((Model) o, deliveryMode);
        }
        offset += PAGE_SIZE;
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.