WIP: add a new subclass of StructuredTaskScope that shows the finished subtasks as a Stream #201
+0
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a rough minimal patch that adds a new subclass of StructuredTaskScope named Stremable (better name needed) pushing failed or succceding subtasks into a Stream.
This subclass aim to:
The Streamable STS adds a new method joinWhen(function) that takes a function that takes a Stream and return a value
When this method is called, the non NONAVAILABLE subtask are pushed into the Stream once they have finished until either there is no more subtasks or the stream has finished (has been short-circuited). If some tasks are still pending because the stream has been short-cirtuited, they are shutdown.
Here are two examples:
Internally, handleCompleted post each subtask into a queue which is read by the Stream spliterator inside joinWhen.
The current implementation is not the right one, instead of introducing a new method into the Flock that can wait on shutdown, threadCount == 0 and the queue has a new subtask, this implementation shutdown the flock early and do not implement shutdown() so it only have to check if the number of tasks is zero.
Progress
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/loom.git pull/201/head:pull/201
$ git checkout pull/201
Update a local copy of the PR:
$ git checkout pull/201
$ git pull https://git.openjdk.org/loom.git pull/201/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 201
View PR using the GUI difftool:
$ git pr show -t 201
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/loom/pull/201.diff