File tree 1 file changed +16
-7
lines changed
src/java.base/share/classes/java/util/concurrent
1 file changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -302,16 +302,25 @@ boolean awaitTermination(long timeout, TimeUnit unit)
302
302
* method makes a best effort attempt to cancel the tasks that it
303
303
* submitted when RejectedExecutionException is thrown.
304
304
*
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.
308
309
* <pre> {@code
309
310
* 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)
313
320
* .map(Future::join)
314
- * .forEach(result -> { });
321
+ * .findFirst()
322
+ * .orElseThrow();
323
+ * }
315
324
* }</pre>
316
325
*
317
326
* @param tasks the collection of tasks
You can’t perform that action at this time.
0 commit comments