invoker.runInvokerForTheSequence(context,sequenceID);
}
}
public static void startPollingManager (ConfigurationContext configurationContext) throws SandeshaException {
PollingManager pollingManager = (PollingManager) configurationContext.getProperty(
Sandesha2Constants.POLLING_MANAGER);
//assums that if somebody hs set the PollingManager, he must hv already started it.
if (pollingManager==null) {
pollingManager = new PollingManager ();
configurationContext.setProperty(Sandesha2Constants.POLLING_MANAGER,pollingManager);
pollingManager.start(configurationContext);
}
}