Uses of Class
org.springframework.boot.task.ThreadPoolTaskSchedulerBuilder
Packages that use ThreadPoolTaskSchedulerBuilder
Package
Description
Auto-configuration for Spring Integration.
Utilities and classes related to task execution and scheduling.
-
Uses of ThreadPoolTaskSchedulerBuilder in org.springframework.boot.autoconfigure.integration
Method parameters in org.springframework.boot.autoconfigure.integration with type arguments of type ThreadPoolTaskSchedulerBuilderModifier and TypeMethodDescriptionIntegrationAutoConfiguration.IntegrationTaskSchedulerConfiguration.taskScheduler(TaskSchedulerBuilder taskSchedulerBuilder, ObjectProvider<ThreadPoolTaskSchedulerBuilder> threadPoolTaskSchedulerBuilderProvider) -
Uses of ThreadPoolTaskSchedulerBuilder in org.springframework.boot.task
Methods in org.springframework.boot.task that return ThreadPoolTaskSchedulerBuilderModifier and TypeMethodDescriptionThreadPoolTaskSchedulerBuilder.additionalCustomizers(Iterable<? extends ThreadPoolTaskSchedulerCustomizer> customizers) AddthreadPoolTaskSchedulerCustomizersthat should be applied to theThreadPoolTaskScheduler.ThreadPoolTaskSchedulerBuilder.additionalCustomizers(ThreadPoolTaskSchedulerCustomizer... customizers) AddthreadPoolTaskSchedulerCustomizersthat should be applied to theThreadPoolTaskScheduler.ThreadPoolTaskSchedulerBuilder.awaitTermination(boolean awaitTermination) Set whether the executor should wait for scheduled tasks to complete on shutdown, not interrupting running tasks and executing all tasks in the queue.ThreadPoolTaskSchedulerBuilder.awaitTerminationPeriod(Duration awaitTerminationPeriod) Set the maximum time the executor is supposed to block on shutdown.ThreadPoolTaskSchedulerBuilder.customizers(Iterable<? extends ThreadPoolTaskSchedulerCustomizer> customizers) Set thethreadPoolTaskSchedulerCustomizersthat should be applied to theThreadPoolTaskScheduler.ThreadPoolTaskSchedulerBuilder.customizers(ThreadPoolTaskSchedulerCustomizer... customizers) Set thethreadPoolTaskSchedulerCustomizersthat should be applied to theThreadPoolTaskScheduler.ThreadPoolTaskSchedulerBuilder.poolSize(int poolSize) Set the maximum allowed number of threads.ThreadPoolTaskSchedulerBuilder.threadNamePrefix(String threadNamePrefix) Set the prefix to use for the names of newly created threads.