Package com.barchart.udt.util

Examples of com.barchart.udt.util.StopWatch.nanoTime()


    timer.start();
    for (int k = 0; k < COUNT; k++) {
      socket.testGetSetArray0(arrayInt, false);
    }
    timer.stop();
    nanos = timer.nanoTime() / COUNT;
    log.info("get/set/abort array; nanos={}", nanos);

    Object[] array = new Object[SIZE];
    timer.start();
    for (int k = 0; k < COUNT; k++) {
View Full Code Here


    timer.start();
    for (int k = 0; k < COUNT; k++) {
      socket.testIterateArray0(array);
    }
    timer.stop();
    nanos = timer.nanoTime() / COUNT / SIZE;
    log.info("iterate object array; nanos={}", nanos);

    //
    Set<Object> set = new HashSet<Object>();
    for (int k = 0; k < SIZE; k++) {
View Full Code Here

    timer.start();
    for (int k = 0; k < COUNT / 10; k++) {
      socket.testIterateSet0(set);
    }
    timer.stop();
    nanos = timer.nanoTime() / COUNT / SIZE * 10;
    log.info("iterate object set; nanos={}", nanos);

    //

    final int FILL_SIZE = 16;
View Full Code Here

    timer.start();
    for (int k = 0; k < COUNT; k++) {
      socket.testFillArray0(fillArray);
    }
    timer.stop();
    nanos = timer.nanoTime() / COUNT;
    log.info("fillArray; nanos={}", nanos);

    ByteBuffer fillBuffer = ByteBuffer.allocateDirect(FILL_SIZE);
    timer.start();
    for (int k = 0; k < COUNT; k++) {
View Full Code Here

    timer.start();
    for (int k = 0; k < COUNT; k++) {
      socket.testFillBuffer0(fillBuffer);
    }
    timer.stop();
    nanos = timer.nanoTime() / COUNT;
    log.info("fillBuffer; nanos={}", nanos);

  }

}
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.