[ server ] - monitor all agent status - 2
This commit is contained in:
@@ -13,7 +13,7 @@ import org.springframework.util.ReflectionUtils;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
|
||||
@Async
|
||||
@Deprecated
|
||||
public class ExecutionJob extends QuartzJobBean {
|
||||
|
||||
@Override
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
package io.wdd.rpc.scheduler.config;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* save the octopus quartz log to database
|
||||
*/
|
||||
@Service
|
||||
@Slf4j
|
||||
public class QuartzLogOperator {
|
||||
|
||||
public boolean save(){
|
||||
|
||||
log.info("QuartzLogOperator pretend to have saved the log !");
|
||||
|
||||
return true;
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -7,6 +7,7 @@ import org.springframework.util.ReflectionUtils;
|
||||
import java.lang.reflect.Method;
|
||||
import java.util.concurrent.Callable;
|
||||
|
||||
@Deprecated
|
||||
public class QuartzRunnable implements Callable<Object> {
|
||||
|
||||
private final Object target;
|
||||
|
||||
Reference in New Issue
Block a user