Home | History | Annotate | Download | only in concurrent

Lines Matching defs:invokeAny

246      * invokeAny(null) throws NPE
251 e.invokeAny(null);
260 * invokeAny(empty collection) throws IAE
265 e.invokeAny(new ArrayList<Callable<String>>());
274 * invokeAny(c) throws NPE if c has null elements
285 e.invokeAny(l);
294 * invokeAny(c) throws ExecutionException if no task in c completes
301 e.invokeAny(l);
311 * invokeAny(c) returns result of some task in c if at least one completes
319 String result = e.invokeAny(l);
411 * timed invokeAny(null) throws NPE
416 e.invokeAny(null, MEDIUM_DELAY_MS, MILLISECONDS);
425 * timed invokeAny(null time unit) throws NPE
432 e.invokeAny(l, MEDIUM_DELAY_MS, null);
441 * timed invokeAny(empty collection) throws IAE
446 e.invokeAny(new ArrayList<Callable<String>>(),
456 * timed invokeAny(c) throws NPE if c has null elements
467 e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS);
476 * timed invokeAny(c) throws ExecutionException if no task completes
483 e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS);
493 * timed invokeAny(c) returns result of some task in c
501 String result = e.invokeAny(l, MEDIUM_DELAY_MS, MILLISECONDS);