Package | Description |
---|---|
org.springframework.boot.autoconfigure.task |
Auto-configuration for task execution and scheduling.
|
org.springframework.boot.task |
Utilities and classes related to task execution and scheduling.
|
Modifier and Type | Method and Description |
---|---|
TaskSchedulerBuilder |
TaskSchedulingAutoConfiguration.taskSchedulerBuilder(TaskSchedulingProperties properties,
org.springframework.beans.factory.ObjectProvider<TaskSchedulerCustomizer> taskSchedulerCustomizers) |
Modifier and Type | Method and Description |
---|---|
org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler |
TaskSchedulingAutoConfiguration.taskScheduler(TaskSchedulerBuilder builder) |
Modifier and Type | Method and Description |
---|---|
TaskSchedulerBuilder |
TaskSchedulerBuilder.additionalCustomizers(Iterable<TaskSchedulerCustomizer> customizers)
Add
taskSchedulerCustomizers that should be applied
to the ThreadPoolTaskScheduler . |
TaskSchedulerBuilder |
TaskSchedulerBuilder.additionalCustomizers(TaskSchedulerCustomizer... customizers)
Add
taskSchedulerCustomizers that should be applied
to the ThreadPoolTaskScheduler . |
TaskSchedulerBuilder |
TaskSchedulerBuilder.customizers(Iterable<TaskSchedulerCustomizer> customizers)
Set the
taskSchedulerCustomizers that should be
applied to the ThreadPoolTaskScheduler . |
TaskSchedulerBuilder |
TaskSchedulerBuilder.customizers(TaskSchedulerCustomizer... customizers)
Set the
TaskSchedulerCustomizers that should be
applied to the ThreadPoolTaskScheduler . |
TaskSchedulerBuilder |
TaskSchedulerBuilder.poolSize(int poolSize)
Set the maximum allowed number of threads.
|
TaskSchedulerBuilder |
TaskSchedulerBuilder.threadNamePrefix(String threadNamePrefix)
Set the prefix to use for the names of newly created threads.
|
Copyright © 2020 Pivotal Software, Inc.. All rights reserved.