Interface SchedulerFactoryBeanCustomizer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface SchedulerFactoryBeanCustomizer
Callback interface that can be implemented by beans wishing to customize the QuartzSchedulerFactoryBeanbefore it is fully initialized, in particular to tune its configuration.For customization of the
DataSourceused by Quartz, use of@QuartzDataSourceis preferred. It will ensure consistent customization of both theSchedulerFactoryBeanand theQuartzDataSourceInitializer.- Since:
- 2.0.0
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcustomize(org.springframework.scheduling.quartz.SchedulerFactoryBean schedulerFactoryBean)Customize theSchedulerFactoryBean.
Method Detail
customize
void customize(org.springframework.scheduling.quartz.SchedulerFactoryBean schedulerFactoryBean)
Customize theSchedulerFactoryBean.- Parameters:
schedulerFactoryBean- the scheduler to customize