IFlowHandlerFailureNotifier.cs 427 B

12345678910
  1. namespace Admin.NET.Plugin.ApprovalFlow.Service;
  2. /// <summary>
  3. /// FlowEngineService.InvokeHandler 调用业务侧 IFlowBizHandler 失败时的通知扩展点。
  4. /// 由各业务插件按需实现,本插件不关心具体写哪张表。
  5. /// </summary>
  6. public interface IFlowHandlerFailureNotifier
  7. {
  8. Task NotifyAsync(string bizType, long instanceId, Exception exception, CancellationToken cancellationToken = default);
  9. }