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

play.jobs.On Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package play.jobs;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Run the job using a Cron expression
 * We use the Quartz CRON trigger (http://www.opensymphony.com/quartz/wikidocs/CronTriggers%20Tutorial.html)
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface On {
    String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy