ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/jsr166e/ForkJoinPool.java
(Generate patch)

Comparing jsr166/src/jsr166e/ForkJoinPool.java (file contents):
Revision 1.60 by jsr166, Wed Jun 19 16:36:45 2013 UTC vs.
Revision 1.63 by jsr166, Sun Jul 21 06:27:42 2013 UTC

# Line 18 | Line 18 | import java.util.concurrent.ExecutorServ
18   import java.util.concurrent.Future;
19   import java.util.concurrent.RejectedExecutionException;
20   import java.util.concurrent.RunnableFuture;
21 import java.util.concurrent.ThreadLocalRandom;
21   import java.util.concurrent.TimeUnit;
22  
23   /**
# Line 531 | Line 530 | public class ForkJoinPool extends Abstra
530           * Returns a new worker thread operating in the given pool.
531           *
532           * @param pool the pool this thread works in
534         * @throws NullPointerException if the pool is null
533           * @return the new worker thread
534 +         * @throws NullPointerException if the pool is null
535           */
536          public ForkJoinWorkerThread newThread(ForkJoinPool pool);
537      }
# Line 2496 | Line 2495 | public class ForkJoinPool extends Abstra
2495       * minimally only the latter.
2496       *
2497       * @param task the task
2498 +     * @param <T> the type of the task's result
2499       * @return the task's result
2500       * @throws NullPointerException if the task is null
2501       * @throws RejectedExecutionException if the task cannot be
# Line 2544 | Line 2544 | public class ForkJoinPool extends Abstra
2544       * Submits a ForkJoinTask for execution.
2545       *
2546       * @param task the task to submit
2547 +     * @param <T> the type of the task's result
2548       * @return the task
2549       * @throws NullPointerException if the task is null
2550       * @throws RejectedExecutionException if the task cannot be

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines