简体   繁体   中英

Starting a mule flow programmatically using groovy

I need to control the execution of a flow manually through a HTTP call.

I have been told I can disable the flow from executing during startup using the initialState="stopped" attribute on the flow. ( How to stop a mule flow from running after startup )

I need to know how to start the flow back using a groovy script.

Using mule 3.2.2.

This should do it:

<scripting:component>
    <scripting:script engine="groovy">
        muleContext.registry.lookupFlowConstruct('targetFlow').start()
    </scripting:script>
</scripting:component>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM