Skip to content

Commit d55b2db

Browse files
committedMay 5, 2021
Improve example in javadoc
1 parent 8265f4d commit d55b2db

File tree

1 file changed

+16
-7
lines changed

1 file changed

+16
-7
lines changed
 

‎src/java.base/share/classes/java/util/concurrent/ExecutorService.java

+16-7
Original file line numberDiff line numberDiff line change
@@ -302,16 +302,25 @@ boolean awaitTermination(long timeout, TimeUnit unit)
302302
* method makes a best effort attempt to cancel the tasks that it
303303
* submitted when RejectedExecutionException is thrown.
304304
*
305-
* <p> The following example invokes {@code submit} with a collection of
306-
* tasks and performs an action on the result of each task that completes
307-
* normally.
305+
* <p> The following are examples that submit a collection of tasks. The
306+
* first collects the results of the tasks that complete normally into a
307+
* list. The second finds the result of any task that completes normally
308+
* and cancels the remaining by closing the stream.
308309
* <pre> {@code
309310
* ExecutorService executor = ...
310-
* Collection<Callable<...>> tasks = ...
311-
* executor.submit(tasks)
312-
* .filter(Future::isCompletedNormally)
311+
* Collection<Callable<String>> tasks = ...
312+
*
313+
* List<String> results = executor.submit(tasks)
314+
* .filter(Future::isCompletedNormally)
315+
* .map(Future::join)
316+
* .toList();
317+
*
318+
* try (Stream<Future<String>> stream = executor.submit(tasks)) {
319+
* String first = stream.filter(Future::isCompletedNormally)
313320
* .map(Future::join)
314-
* .forEach(result -> { });
321+
* .findFirst()
322+
* .orElseThrow();
323+
* }
315324
* }</pre>
316325
*
317326
* @param tasks the collection of tasks

0 commit comments

Comments
 (0)
Please sign in to comment.