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 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
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    customize(org.springframework.scheduling.quartz.SchedulerFactoryBean schedulerFactoryBean)
    Customize the SchedulerFactoryBean.
  • Method Details

    • customize

      void customize(org.springframework.scheduling.quartz.SchedulerFactoryBean schedulerFactoryBean)
      Customize the SchedulerFactoryBean.
      Parameters:
      schedulerFactoryBean - the scheduler to customize