Uses of Interface
java.util.concurrent.ScheduledExecutorService
-
Packages that use ScheduledExecutorService 软件包 描述 java.util.concurrent 实用程序类通常用于并发编程。 -
-
Uses of ScheduledExecutorService in java.util.concurrent
Classes in java.util.concurrent that implement ScheduledExecutorService Modifier and Type Class 描述 class
ScheduledThreadPoolExecutor
AThreadPoolExecutor
可以额外地调度在给定延迟之后运行的命令,或者周期性地执行。Methods in java.util.concurrent that return ScheduledExecutorService Modifier and Type 方法 描述 static ScheduledExecutorService
Executors. newScheduledThreadPool(int corePoolSize)
创建一个线程池,可以调度命令在给定的延迟之后运行,或定期执行。static ScheduledExecutorService
Executors. newScheduledThreadPool(int corePoolSize, ThreadFactory threadFactory)
创建一个线程池,可以调度命令在给定的延迟之后运行,或定期执行。static ScheduledExecutorService
Executors. newSingleThreadScheduledExecutor()
创建一个单线程执行器,可以调度命令在给定的延迟之后运行,或定期执行。static ScheduledExecutorService
Executors. newSingleThreadScheduledExecutor(ThreadFactory threadFactory)
创建一个单线程执行器,可以调度命令在给定的延迟之后运行,或定期执行。static ScheduledExecutorService
Executors. unconfigurableScheduledExecutorService(ScheduledExecutorService executor)
返回一个将所有定义的ScheduledExecutorService
方法委托给给定执行程序的对象,但不能以其他方式使用转换方式访问。Methods in java.util.concurrent with parameters of type ScheduledExecutorService Modifier and Type 方法 描述 static ScheduledExecutorService
Executors. unconfigurableScheduledExecutorService(ScheduledExecutorService executor)
返回一个将所有定义的ScheduledExecutorService
方法委托给给定执行程序的对象,但不能以任何其他可能使用转换方式访问的方法。
-