All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.otto.edison.status.scheduler.CronScheduler Maven / Gradle / Ivy

There is a newer version: 3.3.3
Show newest version
package de.otto.edison.status.scheduler;

import de.otto.edison.status.indicator.ApplicationStatusAggregator;
import org.springframework.scheduling.annotation.Scheduled;

public class CronScheduler implements Scheduler {

    private final ApplicationStatusAggregator aggregator;

    public CronScheduler(final ApplicationStatusAggregator aggregator) {
        this.aggregator = aggregator;
    }

    @Scheduled(cron = "${edison.status.scheduler.cron}")
    public void update() {
        aggregator.update();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy