RFR 8005696: Add CompletableFuture - JEP 155 (original) (raw)

Martin Buchholz martinrb at google.com
Fri Mar 15 03:25:51 UTC 2013


Doing a mini-audit of these methods, here is a change to what seems to be the intent:

Index: ./java/util/concurrent/CompletableFuture.java

RCS file: /export/home/jsr166/jsr166/jsr166/src/main/java/util/concurrent/CompletableFuture.java,v retrieving revision 1.55 diff -u -U 7 -r1.55 CompletableFuture.java --- ./java/util/concurrent/CompletableFuture.java 16 Feb 2013 21:25:55 -0000 1.55 +++ ./java/util/concurrent/CompletableFuture.java 15 Mar 2013 03:23:26 -0000 @@ -1683,35 +1683,35 @@ */ public CompletableFuture thenAccept(Consumer<? super T> block) { return doThenAccept(block, null); }

 /**
  * Creates and returns a CompletableFuture that is asynchronously

On Thu, Mar 14, 2013 at 10:21 AM, Chris Hegarty <chris.hegarty at oracle.com>wrote:

As part of JEP 155 (Concurrency Updates) we are proposing to add CompletableFuture. A Future that may be explicitly completed (setting its value and status), and may include dependent functions and actions that trigger upon its completion.

Specdiff: http://cr.openjdk.java.net/~chegar/8005696/specdiff/java/ util/concurrent/package-**summary.html<http://cr.openjdk.java.net/~chegar/8005696/specdiff/java/util/concurrent/package-summary.html> Webrev: http://cr.openjdk.java.net/**chegar/8005696/webrev.00/**webrev/<http://cr.openjdk.java.net/chegar/8005696/webrev.00/webrev/> CompletableFuture, as usual, is coming from Doug Lea, with assistance from members of the former JCP JSR-166 Expert Group. I have already informally reviewed this. This is an official call for review before finalizing the API for inclusion in jdk8. Note: I still need to make some additions to the test for better coverage, but these should not be a blocker for this review. -Chris.



More information about the core-libs-dev mailing list