Package com.barchart.udt.util

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


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


    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++) {
      socket.testIterateArray0(array);
    }
    timer.stop();
    nanos = timer.nanoTime() / COUNT / SIZE;
View Full Code Here

    //
    Set<Object> set = new HashSet<Object>();
    for (int k = 0; k < SIZE; k++) {
      set.add(k);
    }
    timer.start();
    for (int k = 0; k < COUNT / 10; k++) {
      socket.testIterateSet0(set);
    }
    timer.stop();
    nanos = timer.nanoTime() / COUNT / SIZE * 10;
 
View Full Code Here

    //

    final int FILL_SIZE = 16;

    byte[] fillArray = new byte[FILL_SIZE];
    timer.start();
    for (int k = 0; k < COUNT; k++) {
      socket.testFillArray0(fillArray);
    }
    timer.stop();
    nanos = timer.nanoTime() / COUNT;
View Full Code Here

    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++) {
      socket.testFillBuffer0(fillBuffer);
    }
    timer.stop();
    nanos = timer.nanoTime() / COUNT;
View Full Code Here

      @Override
      public void run() {
        try {
          final int loop = 100;
          StopWatch timer = new StopWatch();
          timer.start();
          for (int k = 0; k < loop; k++) {
            for (int index = Byte.MIN_VALUE; index <= Byte.MAX_VALUE; index++) {
              streamOut.write(index);
            }
            for (int index = Byte.MIN_VALUE; index <= Byte.MAX_VALUE; index++) {
View Full Code Here

        final int size = 1000;
        final byte[] arrayOut = new byte[size];
        final byte[] arrayIn = new byte[size];
        try {
          final StopWatch timer = new StopWatch();
          timer.start();
          for (int k = 0; k < loop; k++) {
            random.nextBytes(arrayOut);
            streamOut.write(arrayOut);
            final int count = streamIn.read(arrayIn);
            assertEquals(count, size);
View Full Code Here

        final int size = 100;
        final byte[] arrayOut = new byte[size];
        final byte[] arrayIn = new byte[size];
        try {
          final StopWatch timer = new StopWatch();
          timer.start();
          for (int k = 0; k < loop; k++) {
            random.nextBytes(arrayOut);
            streamOut.write(arrayOut);
            final int count = streamIn.read(arrayIn);
            assertEquals(count, size);
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.