Package co.adhoclabs.ironcushion.BenchmarkResults

Examples of co.adhoclabs.ironcushion.BenchmarkResults.CrudBenchmarkResults


    // Perform the CRUD operations.
    System.out.println("Starting CRUD benchmark...");
    List<CrudConnectionStatistics> allCrudConnectionStatistics = httpReactor.performCrudOperations(
        allCrudOperations, crudPath);
    CrudBenchmarkResults crudBenchmarkResults = BenchmarkResults.getCrudResults(
        parsedArguments.numConnections, crudOperationCounts, allCrudConnectionStatistics);
    System.out.println("CRUD BENCHMARK RESULTS:");
    System.out.println(crudBenchmarkResults.toString("  "));
    System.out.println();
  }
View Full Code Here

TOP

Related Classes of co.adhoclabs.ironcushion.BenchmarkResults.CrudBenchmarkResults

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.