java.util.concurrent.ScheduledThreadPoolExecutor.invokeAny()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(2.6k)|赞(0)|评价(0)|浏览(83)

本文整理了Java中java.util.concurrent.ScheduledThreadPoolExecutor.invokeAny()方法的一些代码示例,展示了ScheduledThreadPoolExecutor.invokeAny()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ScheduledThreadPoolExecutor.invokeAny()方法的具体详情如下:
包路径:java.util.concurrent.ScheduledThreadPoolExecutor
类名称:ScheduledThreadPoolExecutor
方法名:invokeAny

ScheduledThreadPoolExecutor.invokeAny介绍

暂无

代码示例

代码示例来源:origin: de.dentrassi.eclipse.neoscada.utils/org.eclipse.scada.utils

@Override
public <T> T invokeAny ( final Collection<? extends Callable<T>> tasks, final long timeout, final TimeUnit unit ) throws InterruptedException, ExecutionException, TimeoutException
{
  return this.executor.invokeAny ( tasks, timeout, unit );
}

代码示例来源:origin: com.tencent.tars/tars-core

@Override
public <T> T invokeAny(Collection<? extends Callable<T>> tasks) throws InterruptedException, ExecutionException {
  return taskExecutor.invokeAny(tasks);
}

代码示例来源:origin: com.tencent.tars/tars-client

@Override
public <T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException {
  return taskExecutor.invokeAny(tasks, timeout, unit);
}

代码示例来源:origin: com.tencent.tars/tars-core

@Override
public <T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException {
  return taskExecutor.invokeAny(tasks, timeout, unit);
}

代码示例来源:origin: de.dentrassi.eclipse.neoscada.utils/org.eclipse.scada.utils

@Override
public <T> T invokeAny ( final Collection<? extends Callable<T>> tasks ) throws InterruptedException, ExecutionException
{
  return this.executor.invokeAny ( tasks );
}

代码示例来源:origin: TarsCloud/TarsJava

@Override
public <T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException {
  return taskExecutor.invokeAny(tasks, timeout, unit);
}

代码示例来源:origin: com.tencent.tars/tars-client

@Override
public <T> T invokeAny(Collection<? extends Callable<T>> tasks) throws InterruptedException, ExecutionException {
  return taskExecutor.invokeAny(tasks);
}

代码示例来源:origin: TarsCloud/TarsJava

@Override
public <T> T invokeAny(Collection<? extends Callable<T>> tasks) throws InterruptedException, ExecutionException {
  return taskExecutor.invokeAny(tasks);
}

代码示例来源:origin: uk.org.retep.tools/annotations

/**
 * {@inheritDoc}
 */
@Override
public <T> T invokeAny(
    Collection<? extends Callable<T>> tasks,
    long timeout,
    TimeUnit unit )
    throws InterruptedException,
        ExecutionException,
        TimeoutException
{
  return executor.invokeAny( tasks, timeout, unit );
}

相关文章

微信公众号

最新文章

更多

ScheduledThreadPoolExecutor类方法