This commit is contained in:
2025-02-12 18:32:21 +09:00
commit aff0f4eeda
767 changed files with 285356 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package com.caliverse.admin.scheduler;
import com.caliverse.admin.scheduler.config.ScheduleExecutionConfig;
public interface Scheduler {
void execute();
boolean isRepeatable();
ScheduleType getScheduleType();
ScheduleExecutionConfig getSchedulerConfig();
}