update - 异步添加任务异常处理器
This commit is contained in:
parent
c9fd2a54b0
commit
664d621d23
@ -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;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user