alibaba / SmartEngine

SmartEngine is a lightweight business orchestration engine.
Apache License 2.0
768 stars 219 forks source link

smart-engine-core 3.0.0 并行网关异常处理 #89

Closed caimoxuan closed 1 year ago

caimoxuan commented 1 year ago

并行网关执行的时候,默认使用便利模式; 当实现了ExecutorService后, 使用并行模式这里看代码是 在 ParalleGatewayBehiavior 中的处理

executorService.invokeAll(tasks);

执行的所有并行callable, 这里好像没有异常处理呢, 当某一个并行线程抛出异常的时候, 这里就把异常吃掉了整个流程不报错; 我理解这里应该可以定制线程中抛出异常中断流程或者继续执行呢, 这个部分是怎么考虑的呢