views:

54

answers:

2

I need that would be one time moment run only one workflow. How can I do this?

+1  A: 

Use WorkflowInvoker or WorkflowApplication and you have full control over which workflow runs when.

Maurice
A: 

If you want to test your workflow, use WorkflowInvoker. If you want to be able to receive message (i.e. waiting for an input) and be about to test the persistence, monitoring of the workflow instance, use WorkflowApplication.

Isaac Yuen