Home | History | Annotate | Download | only in jsr166

Lines Matching full:invokeany

244      * invokeAny(null) throws NPE
250 e.invokeAny(null);
257 * invokeAny(empty collection) throws IAE
263 e.invokeAny(new ArrayList<Callable<String>>());
270 * invokeAny(c) throws NPE if c has null elements
280 e.invokeAny(l);
287 * invokeAny(c) throws ExecutionException if no task in c completes
295 e.invokeAny(l);
304 * invokeAny(c) returns result of some task in c if at least one completes
312 String result = e.invokeAny(l);
393 * timed invokeAny(null) throws NPE
399 e.invokeAny(null, MEDIUM_DELAY_MS, MILLISECONDS);
406 * timed invokeAny(null time unit) throws NPE
414 e.invokeAny(l, MEDIUM_DELAY_MS, null);
421 * timed invokeAny(empty collection) throws IAE
427 e.invokeAny(new ArrayList<Callable<String>>(),
435 * timed invokeAny(c) throws NPE if c has null elements
445 e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS);
452 * timed invokeAny(c) throws ExecutionException if no task completes
461 invokeAny(l, LONG_DELAY_MS, MILLISECONDS);
471 * timed invokeAny(c) returns result of some task in c
480 String result = e.invokeAny(l, LONG_DELAY_MS, MILLISECONDS);