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

com.fenglinga.tinyspring.scheduling.CronTask Maven / Gradle / Ivy

There is a newer version: 1.0.12
Show newest version
package com.fenglinga.tinyspring.scheduling;

public class CronTask extends TriggerTask {
    private final String expression;

    public CronTask(Runnable runnable, String expression) {
        this(runnable, new CronTrigger(expression));
    }

    public CronTask(Runnable runnable, CronTrigger cronTrigger) {
        super(runnable, cronTrigger);
        this.expression = cronTrigger.getExpression();
    }

    public String getExpression() {
        return this.expression;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy