views:

187

answers:

1

WorkflowApplication..::.LoadRunnableInstance

Can anyone use this in a sentence? (Im looking for an example usage)

+1  A: 

Not quite sure what you are asking here. Do you want an example of how to use LoadRunnableInstance or do you want to know what LoadRunnableInstance does?

Assuming you want to know what it does, it will basically load a workflow instance from the instance store if there is an runnable instance in the store, ie. an instance that was delayed for example and the delay period has expired.

Typically you would query the instance store to check if there is an activatable instance available and if there is call LoadRunnableInstance to load the instance into memory and resume execution of the workflow.

Chris Taylor
hi chris, thats exactly what im looking for do you have any code samples, im really curious on how one would query the instancestore and reload wfs that should be reloaded
almog.ori
Unfortunately not, I have only just started with the WF 4.0 stuff my self.
Chris Taylor