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 before it is fully initialized, in particular to tune its 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 QuartzDataSourceInitializer.

    Since:
    2.0.0
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and TypeMethodDescription
      voidcustomize​(org.springframework.scheduling.quartz.SchedulerFactoryBean schedulerFactoryBean)
      Customize the SchedulerFactoryBean.
    • Method Detail

      • customize

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