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

io.robe.quartz.common.TriggerInfo Maven / Gradle / Ivy

There is a newer version: 0.5.0.0-1039
Show newest version
package io.robe.quartz.common;

public interface TriggerInfo {

    public String getName();

    public String getGroup();

    public long getStartTime();

    public long getEndTime();

    public int getRepeatCount();

    public long getRepeatInterval();

    public String getCron();

    public Type getType();

    enum Type {
        SIMPLE,
        CRON,
        ON_APP_START,
        ON_APP_STOP
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy