How to stop a mule flow from running after startup
问题 I have a mule flow that starts with a jms inbound endpoint. My requirement is to prevent the queue from reading any messages until I explicitly enable the connector for the endpoint. So I have an Initializer implementing MuleContextNotificationListener, override onNotification like below: @Override public void onNotification(MuleContextNotification ctxNotification) { System.out.println("Notification order event: " + ctxNotification.getActionName() ); if(ctxNotification.getAction() ==