Home | History | Annotate | Download | only in jsr166

Lines Matching refs:invokeAll

941      * invokeAll(null) throws NPE
947 e.invokeAll(null);
954 * invokeAll(empty collection) returns empty collection
959 List<Future<String>> r = e.invokeAll(new ArrayList<Callable<String>>());
965 * invokeAll(c) throws NPE if c has null elements
974 e.invokeAll(l);
981 * get of invokeAll(c) throws exception on failed task
988 List<Future<String>> futures = e.invokeAll(l);
1000 * invokeAll(c) returns results of all completed tasks
1008 List<Future<String>> futures = e.invokeAll(l);
1110 * timed invokeAll(null) throws NPE
1116 e.invokeAll(null, MEDIUM_DELAY_MS, MILLISECONDS);
1123 * timed invokeAll(,,null) throws NPE
1131 e.invokeAll(l, MEDIUM_DELAY_MS, null);
1138 * timed invokeAll(empty collection) returns empty collection
1143 List<Future<String>> r = e.invokeAll(new ArrayList<Callable<String>>(),
1150 * timed invokeAll(c) throws NPE if c has null elements
1159 e.invokeAll(l, MEDIUM_DELAY_MS, MILLISECONDS);
1166 * get of element of invokeAll(c) throws exception on failed task
1174 e.invokeAll(l, LONG_DELAY_MS, MILLISECONDS);
1186 * timed invokeAll(c) returns results of all completed tasks
1195 e.invokeAll(l, LONG_DELAY_MS, MILLISECONDS);
1203 * timed invokeAll(c) cancels tasks not completed by timeout
1221 p.invokeAll(tasks, timeout, MILLISECONDS);