You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
396 B
Java
16 lines
396 B
Java
7 months ago
|
package com.supervision.police.service;
|
||
|
|
||
|
import com.supervision.police.domain.XxlJobInfo;
|
||
|
|
||
|
import java.util.List;
|
||
|
|
||
|
public interface XxlJobService {
|
||
|
String login() throws Exception;
|
||
|
|
||
|
List<XxlJobInfo> pageList(XxlJobInfo xxlJobInfo) throws Exception;
|
||
|
|
||
|
void executeTaskById(String id, String param) throws Exception;
|
||
|
|
||
|
void executeTaskByJobHandler(String jobHandler, String param);
|
||
|
}
|