Package org.hibernate.search.test.performance.task

Examples of org.hibernate.search.test.performance.task.InsertBookTask


    TestReporter.printReport( ctx );
  }

  protected void scheduleTasksAndStart(TestContext ctx, long cyclesCount) {
    InsertBookTask insertBookTask = new InsertBookTask( ctx );
    UpdateBookRatingTask updateBookRatingTask = new UpdateBookRatingTask( ctx );
    UpdateBookTotalSoldTask updateBookTotalSoldTask = new UpdateBookTotalSoldTask( ctx );
    QueryBooksByAuthorTask queryBooksByAuthorTask = new QueryBooksByAuthorTask( ctx );
    QueryBooksByAverageRatingTask queryBooksByAverageRatingTask = new QueryBooksByAverageRatingTask( ctx );
    QueryBooksByBestRatingTask queryBooksByBestRatingTask = new QueryBooksByBestRatingTask( ctx );
View Full Code Here

TOP

Related Classes of org.hibernate.search.test.performance.task.InsertBookTask

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.