use of org.mule.runtime.core.api.construct.FlowConstruct in project mule by mulesoft.
the class FunctionalTestCase method stopFlowConstruct.
protected void stopFlowConstruct(String flowName) throws Exception {
FlowConstruct flowConstruct = getFlowConstruct(flowName);
Flow flow = (Flow) flowConstruct;
flow.stop();
}
use of org.mule.runtime.core.api.construct.FlowConstruct in project mule by mulesoft.
the class FlowConstructRunner method doBuildEvent.
private void doBuildEvent() {
FlowConstruct flow = getFlowConstruct();
requestEvent = eventBuilder.build(flow);
}
Aggregations