Home | History | Annotate | Download | only in jsr166

Lines Matching refs:invokeAll

716      * invokeAll(null) throws NullPointerException
721 e.invokeAll(null);
730 * invokeAll(empty collection) returns empty collection
736 = e.invokeAll(new ArrayList<Callable<String>>());
744 * invokeAll(c) throws NullPointerException if c has null elements
752 e.invokeAll(l);
761 * get of returned element of invokeAll(c) throws
768 List<Future<String>> futures = e.invokeAll(l);
781 * invokeAll(c) returns results of all completed tasks in c
789 List<Future<String>> futures = e.invokeAll(l);
896 * timed invokeAll(null) throws NullPointerException
901 e.invokeAll(null, MEDIUM_DELAY_MS, MILLISECONDS);
910 * timed invokeAll(null time unit) throws NullPointerException
917 e.invokeAll(l, MEDIUM_DELAY_MS, null);
926 * timed invokeAll(empty collection) returns empty collection
932 = e.invokeAll(new ArrayList<Callable<String>>(),
941 * timed invokeAll(c) throws NullPointerException if c has null elements
949 e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
958 * get of returned element of invokeAll(c) throws exception on failed task
965 = e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
978 * timed invokeAll(c) returns results of all completed tasks in c
987 = e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);