mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-17 11:22:57 +08:00
19 lines
389 B
Java
19 lines
389 B
Java
package emu.grasscutter.task;
|
|
|
|
import org.quartz.*;
|
|
|
|
@PersistJobDataAfterExecution
|
|
public class TaskHandler implements Job {
|
|
|
|
public void restartExecute() throws JobExecutionException {
|
|
execute(null);
|
|
}
|
|
|
|
@Override
|
|
public void execute(JobExecutionContext context) throws JobExecutionException {
|
|
// TODO Auto-generated method stub
|
|
|
|
}
|
|
|
|
}
|