Home | History | Annotate | Download | only in concurrent

Lines Matching defs:invokeAll

327      * invokeAll(null) throws NPE
332 e.invokeAll(null);
341 * invokeAll(empty collection) returns empty collection
347 e.invokeAll(new ArrayList<Callable<String>>());
355 * invokeAll(c) throws NPE if c has null elements
363 e.invokeAll(l);
372 * get of returned element of invokeAll(c) throws exception on failed task
379 List<Future<String>> futures = e.invokeAll(l);
393 * invokeAll(c) returns results of all completed tasks in c
401 List<Future<String>> futures = e.invokeAll(l);
509 * timed invokeAll(null) throws NPE
514 e.invokeAll(null, MEDIUM_DELAY_MS, MILLISECONDS);
523 * timed invokeAll(null time unit) throws NPE
530 e.invokeAll(l, MEDIUM_DELAY_MS, null);
539 * timed invokeAll(empty collection) returns empty collection
544 List<Future<String>> r = e.invokeAll(
554 * timed invokeAll(c) throws NPE if c has null elements
562 e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
571 * get of returned element of invokeAll(c) throws exception on failed task
579 e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
593 * timed invokeAll(c) returns results of all completed tasks in c
602 e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
612 * timed invokeAll cancels tasks not completed by timeout
623 e.invokeAll(l, SHORT_DELAY_MS, MILLISECONDS);