Skip to content

Instantly share code, notes, and snippets.

@mariomartinezricston
Last active September 20, 2016 13:48
Show Gist options
  • Save mariomartinezricston/edb034bbb6a56902a65ade530cff42f5 to your computer and use it in GitHub Desktop.
Save mariomartinezricston/edb034bbb6a56902a65ade530cff42f5 to your computer and use it in GitHub Desktop.
onNotification
@Override
public void onNotification(MuleContextNotification notification) {
if (notification.getAction() == MuleContextNotification.CONTEXT_STARTED) {
logger.info("Context Started");
final Runnable startFlow=createParalelStart(notification);
new Thread(startFlow).start();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment