Uses of Class
jsr166y.CountedCompleter

Packages that use CountedCompleter
jsr166y Preview versions of classes targeted for Java 7. 
 

Uses of CountedCompleter in jsr166y
 

Methods in jsr166y that return CountedCompleter
 CountedCompleter CountedCompleter.getCompleter()
          Returns the completer established in this task's constructor, or null if none.
 

Methods in jsr166y with parameters of type CountedCompleter
 void CountedCompleter.onCompletion(CountedCompleter caller)
          Performs an action when method tryComplete() is invoked and there are no pending counts, or when the unconditional method complete(java.lang.Void) is invoked.
 boolean CountedCompleter.onExceptionalCompletion(Throwable ex, CountedCompleter caller)
          Performs an action when method ForkJoinTask.completeExceptionally(java.lang.Throwable) is invoked or method compute() throws an exception, and this task has not otherwise already completed normally.
 

Constructors in jsr166y with parameters of type CountedCompleter
CountedCompleter(CountedCompleter completer)
          Creates a new CountedCompleter with the given completer and an initial pending count of zero.
CountedCompleter(CountedCompleter completer, int initialPendingCount)
          Creates a new CountedCompleter with the given completer and initial pending count.
 



Copyright © 2009-2012. All Rights Reserved.