Home | History | Annotate | Download | only in jsr166

Lines Matching refs:invokeAll

318      * invokeAll(null) throws NPE
324 e.invokeAll(null);
331 * invokeAll(empty collection) returns empty collection
336 List<Future<String>> r = e.invokeAll(new ArrayList<Callable<String>>());
342 * invokeAll(c) throws NPE if c has null elements
351 e.invokeAll(l);
358 * get of returned element of invokeAll(c) throws exception on failed task
365 List<Future<String>> futures = e.invokeAll(l);
377 * invokeAll(c) returns results of all completed tasks in c
385 List<Future<String>> futures = e.invokeAll(l);
487 * timed invokeAll(null) throws NPE
493 e.invokeAll(null, MEDIUM_DELAY_MS, MILLISECONDS);
500 * timed invokeAll(null time unit) throws NPE
508 e.invokeAll(l, MEDIUM_DELAY_MS, null);
515 * timed invokeAll(empty collection) returns empty collection
520 List<Future<String>> r = e.invokeAll(new ArrayList<Callable<String>>(), MEDIUM_DELAY_MS, MILLISECONDS);
526 * timed invokeAll(c) throws NPE if c has null elements
535 e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
542 * get of returned element of invokeAll(c) throws exception on failed task
550 e.invokeAll(l, LONG_DELAY_MS, MILLISECONDS);
562 * timed invokeAll(c) returns results of all completed tasks in c
571 e.invokeAll(l, LONG_DELAY_MS, MILLISECONDS);
579 * timed invokeAll cancels tasks not completed by timeout
592 e.invokeAll(tasks, timeout, MILLISECONDS);