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

Comparing jsr166/src/jsr166y/CountedCompleter.java (file contents):
Revision 1.4 by jsr166, Sun Oct 21 05:22:35 2012 UTC vs.
Revision 1.12 by jsr166, Wed Nov 14 20:06:49 2012 UTC

# Line 27 | Line 27 | package jsr166y;
27   * affect only internal counts; they do not establish any further
28   * internal bookkeeping. In particular, the identities of pending
29   * tasks are not maintained. As illustrated below, you can create
30 < * subclasses that do record some or all pended tasks or their results
31 < * when needed.
30 > * subclasses that do record some or all pending tasks or their
31 > * results when needed.
32   *
33   * <p>A concrete CountedCompleter class must define method {@link
34   * #compute}, that should, in almost all use cases, invoke {@code
# Line 142 | Line 142 | package jsr166y;
142   *
143   * As a further improvement, notice that the left task need not even
144   * exist.  Instead of creating a new one, we can iterate using the
145 < * original task, and add a pending count for each fork:
145 > * original task, and add a pending count for each fork.
146   *
147   * <pre> {@code
148   * class ForEach<E> ...
# Line 378 | Line 378 | public abstract class CountedCompleter<T
378      }
379  
380      /**
381 +     * Returns the root of the current computation; i.e., this
382 +     * task if it has no completer, else its completer's root.
383 +     *
384 +     * @return the root of the current computation
385 +     */
386 +    public final CountedCompleter<?> getRoot() {
387 +        CountedCompleter<?> a = this, p;
388 +        while ((p = a.completer) != null)
389 +            a = p;
390 +        return a;
391 +    }
392 +
393 +    /**
394       * If the pending count is nonzero, decrements the count;
395       * otherwise invokes {@link #onCompletion} and then similarly
396       * tries to complete this task's completer, if one exists,
# Line 465 | Line 478 | public abstract class CountedCompleter<T
478          }
479      }
480  
468
481      /**
482       * Returns a sun.misc.Unsafe.  Suitable for use in a 3rd party package.
483       * Replace with a simple call to Unsafe.getUnsafe when integrating
# Line 493 | Line 505 | public abstract class CountedCompleter<T
505              }
506          }
507      }
496
508   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines