Examples of MyWorkerThreadFactory


Examples of com.packtpub.java7.concurrency.chapter7.recipe06.task.MyWorkerThreadFactory

  public static void main(String[] args) throws Exception {

    /*
     * Create a new MyWorkerThreadFactory
     */
    MyWorkerThreadFactory factory=new MyWorkerThreadFactory();
   
    /*
     * Create new ForkJoinPool, passing as parameter the factory created before
     */
    ForkJoinPool pool=new ForkJoinPool(4, factory, null, false);
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.