com.alibaba.schedulerx.service.JobSyncService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of schedulerx2-spring-boot-starter Show documentation
Show all versions of schedulerx2-spring-boot-starter Show documentation
schedulerx2-spring-boot-starter
package com.alibaba.schedulerx.service;
import java.util.Map;
import com.alibaba.schedulerx.JobProperty;
import com.aliyuncs.DefaultAcsClient;
/**
* JobSyncService
* @author yaohui
* @create 2024/9/2 5:47 PM
**/
public interface JobSyncService {
void syncJobs(Map jobs, String namespaceSource) throws Exception;
void syncJobs() throws Exception;
boolean syncNamespace(DefaultAcsClient client) throws Exception;
boolean syncAppGroup(DefaultAcsClient client) throws Exception;
}