update - 异步添加任务异常处理器

This commit is contained in:
wangli 2024-04-17 16:03:37 +08:00
parent c9fd2a54b0
commit 664d621d23

View File

@ -0,0 +1,18 @@
package cn.axzo.workflow.core.engine.job.exception.handler;
import org.flowable.job.api.JobInfo;
import org.flowable.job.service.JobServiceConfiguration;
import org.flowable.job.service.impl.asyncexecutor.AsyncRunnableExecutionExceptionHandler;
/**
* TODO
*
* @author wangli
* @since 2024/4/17 16:03
*/
public class CustomAsyncRunnableExecutionExceptionHandler implements AsyncRunnableExecutionExceptionHandler {
@Override
public boolean handleException(JobServiceConfiguration jobServiceConfiguration, JobInfo job, Throwable exception) {
return false;
}
}