Package org.jugile.util

Examples of org.jugile.util.Timer


import org.jugile.util.Timer;

public class DomainLockTest extends Thread {

  public static void main(String args[]) {
    Timer t = new Timer();
    t = new Timer();
    int numOfThreads = 40;
    for (int i = 0; i < numOfThreads; i++) {
      new DomainLockTest("th"+i, t).start();
    }
  }
View Full Code Here


    print(buf.toString());
  }

  public String stats() {
    Stats st = new Stats(classes());
    Timer t = new Timer();
    cd().stats(st);
    return st.toString() + "\n stats took ms: " + t.stop();
  }
View Full Code Here

TOP

Related Classes of org.jugile.util.Timer

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.