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 变量和类型 类 描述 class
ScheduledThreadPoolExecutor
ThreadPoolExecutor
,可以额外安排命令在给定延迟后运行,或定期执行。Methods in java.util.concurrent that return ScheduledExecutorService 变量和类型 方法 描述 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 变量和类型 方法 描述 static ScheduledExecutorService
Executors. unconfigurableScheduledExecutorService(ScheduledExecutorService executor)
返回一个对象,该对象将所有已定义的ScheduledExecutorService
方法委托给给定的执行程序,但不能使用强制转换可以访问的任何其他方法。
-