Package de.scoopgmbh.copper.monitoring

Examples of de.scoopgmbh.copper.monitoring.NullRuntimeStatisticsCollector


    return sb.toString();
  }

  private static void test(final DataSource dataSource, final IdFactory idFactory, final byte[] data, final byte[] response, final String data_s, final String response_s, final PrintStream ps) throws InterruptedException, Exception {
    Thread.sleep(30000);
    final StmtStatistic a = new StmtStatistic("INSERT INTO BUSI", new NullRuntimeStatisticsCollector());
    final StmtStatistic b = new StmtStatistic("INSERT INTO WAIT", new NullRuntimeStatisticsCollector());
    final StmtStatistic c = new StmtStatistic("INSERT INTO RESP", new NullRuntimeStatisticsCollector());
    for (int i=0; i<5; i++) {
      final List<String> ids = new ArrayList<String>(100000);
      final List<String> cids = new ArrayList<String>(100000);
      new RetryingTransaction<Void>(dataSource) {
        @Override
View Full Code Here

TOP

Related Classes of de.scoopgmbh.copper.monitoring.NullRuntimeStatisticsCollector

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.