Package com.packtpub.java7.concurrency.chapter2.recipe2.task

Examples of com.packtpub.java7.concurrency.chapter2.recipe2.task.BuildStats.printStats()


      e.printStackTrace();
    }

    //Get the actual time and print the execution time
    Date date2=new Date();
    stats.printStats();
    System.out.println("Execution Time: "+((date2.getTime()-date1.getTime())/1000));

  }

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