Leszek Gawron wrote:

I have this snipped in one of my .js files :


...

function runContinuation( action ) {



Provided that "action" contains continuation ID and not actual continuation object... you need to lookupWebContinuation from the ContinuationsManager component, this will give you WebContinuation object. Once you have it... Something like this should be able to invoke it:


   var wk = contManager.lookupWebContinuation(action);
   var c = wk.getContinuation();
   c(c);


Vadim




Reply via email to