Package co.adhoclabs.ironcushion.crud

Examples of co.adhoclabs.ironcushion.crud.CrudPipelineFactory


  }
 
  public List<CrudConnectionStatistics> performCrudOperations(List<CrudOperations> allCrudOperations,
      String crudPath) throws BenchmarkException {
    // Run the CRUD operations.
    CrudPipelineFactory crudPipelineFactory = new CrudPipelineFactory(
        numConnections, allCrudOperations, crudPath);
    run(crudPipelineFactory);
   
    // Return the times for each connection.
    return crudPipelineFactory.getAllConnectionStatistics();
  }
View Full Code Here

TOP

Related Classes of co.adhoclabs.ironcushion.crud.CrudPipelineFactory

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.