cn.khthink.easyapi.kit.schedule.EasyScheduleTask Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of EasyApi Show documentation
Show all versions of EasyApi Show documentation
A RESTFUL Framework for JavaWeb
The newest version!
package cn.khthink.easyapi.kit.schedule;
import lombok.Builder;
import lombok.Getter;
import lombok.Setter;
import java.util.concurrent.TimeUnit;
/**
* Create by kh at 2018/12/1
*
* @author kh
*/
@Getter
@Setter
@Builder
public class EasyScheduleTask {
private String name;
private Runnable task;
private long initialDelay;
private long delay;
private long period;
private TimeUnit timeUnit;
private EasyScheduleTaskKit.ScheduleType scheduleType;
private String cron;
}