I'm developing an utility in order to work with persisted WF instances in a WF DB.
I'm using the standard SqlWorkflowPersistenceService to access the WF DB. I'd like to use the persistence service functionality such as GetAllWorkflows() und load individual instances via GetWorkflow().
While I'm working with these instances, I'd like to prevent the runtime from processing other instances. The persistence poll interval is set to a high value to prevent the service from polling while the tool is running, however the service loads instances with expired timers when it's starting.
Is there a way to prevent the runtime loading and processing instances at all?