Java org.springframework.scheduling.config ScheduledTaskRegistrar fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.scheduling.config ScheduledTaskRegistrar fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.scheduling.config ScheduledTaskRegistrar.

The text is from its open source code.

Method

voidaddCronTask(Runnable task, String expression)
Add a Runnable task to be triggered per the given cron expression.
voidaddFixedDelayTask(Runnable task, long delay)
Add a Runnable task to be triggered with the given fixed delay.
voidaddFixedDelayTask(IntervalTask task)
Add a fixed-delay IntervalTask .
voidaddFixedRateTask(Runnable task, long interval)
Add a Runnable task to be triggered at the given fixed-rate interval.
voidsetScheduler(@Nullable Object scheduler)
Set the TaskScheduler to register scheduled tasks with, or a java.util.concurrent.ScheduledExecutorService to be wrapped as a TaskScheduler .
voidsetTaskScheduler(TaskScheduler taskScheduler)
Set the TaskScheduler to register scheduled tasks with.