如何停止 mule 中的异步流
How to stop asynchronous flow in mule
我试图通过在 groovy 脚本中使用 muleContext.registry.lookupFlowConstruct('').stop() 命令来停止 mule 中的异步流,但即使它仍然触发 flow.I想突然停下来。
你可以试试
eventContext.setStopFurtherProcessing(true)
或
<expression-component>
app.registry.yourflowName.stop();
</expression-component>
如果您希望阻止消息进入您的流程,您还可以使用过滤器。
我试图通过在 groovy 脚本中使用 muleContext.registry.lookupFlowConstruct('').stop() 命令来停止 mule 中的异步流,但即使它仍然触发 flow.I想突然停下来。
你可以试试
eventContext.setStopFurtherProcessing(true)
或
<expression-component>
app.registry.yourflowName.stop();
</expression-component>
如果您希望阻止消息进入您的流程,您还可以使用过滤器。