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.
Callback interface that can be implemented by beans wishing to customize the Quartz
SchedulerFactoryBean
to fine-tune its auto-configuration.
For customization of the DataSource
used by Quartz, use of
@QuartzDataSource
is preferred. It will ensure consistent
customization of both the SchedulerFactoryBean
and the
QuartzDataSourceScriptDatabaseInitializer
.
- Since:
- 2.0.0
- Author:
- Vedran Pavic
-
Method Summary
Modifier and TypeMethodDescriptionvoid
customize
(SchedulerFactoryBean schedulerFactoryBean) Customize theSchedulerFactoryBean
.
-
Method Details
-
customize
Customize theSchedulerFactoryBean
.- Parameters:
schedulerFactoryBean
- the scheduler to customize
-