类的使用
cn.taketoday.scheduling.concurrent.ExecutorConfigurationSupport
程序包
说明
Scheduling convenience classes for the
java.util.concurrent
and jakarta.enterprise.concurrent packages, allowing to set up a
ThreadPoolExecutor or ScheduledThreadPoolExecutor as a bean in a Framework
context.-
cn.taketoday.scheduling.concurrent中ExecutorConfigurationSupport的使用
修饰符和类型类说明classFactoryBeanthat sets up aScheduledExecutorService(by default: aScheduledThreadPoolExecutor) and exposes it for bean references.classJavaBean that allows for configuring aThreadPoolExecutorin bean style (through its "corePoolSize", "maxPoolSize", "keepAliveSeconds", "queueCapacity" properties) and exposing it as a bean reference of its nativeExecutorServicetype.classJavaBean that allows for configuring aThreadPoolExecutorin bean style (through its "corePoolSize", "maxPoolSize", "keepAliveSeconds", "queueCapacity" properties) and exposing it as a FrameworkTaskExecutor.classImplementation ofTaskSchedulerinterface, wrapping a nativeScheduledThreadPoolExecutor.