com.xxl.job.plus.executor.service.JobGroupService Maven / Gradle / Ivy
package com.xxl.job.plus.executor.service;
import com.xxl.job.plus.executor.model.XxlJobGroup;
import java.util.List;
public interface JobGroupService {
List getJobGroup();
boolean autoRegisterGroup();
boolean preciselyCheck();
XxlJobGroup getJobGroup(String appName, String title);
}