示例#1
0
文件: WakeUp.cs 项目: tle5/elsa-core
 public WakeUp(IWorkflowTriggerInterruptor workflowInterruptor)
 {
     _workflowInterruptor = workflowInterruptor;
 }
 public InterruptTrigger(IWorkflowTriggerInterruptor workflowTriggerInterruptor, IWorkflowInstanceStore workflowInstanceStore)
 {
     _workflowTriggerInterruptor = workflowTriggerInterruptor;
     _workflowInstanceManager    = workflowInstanceStore;
 }
示例#3
0
 public InterruptTrigger(IWorkflowTriggerInterruptor workflowTriggerInterruptor, IWorkflowInstanceStore workflowInstanceStore, IWorkflowStorageService workflowStorageService)
 {
     _workflowTriggerInterruptor = workflowTriggerInterruptor;
     _workflowInstanceManager    = workflowInstanceStore;
     _workflowStorageService     = workflowStorageService;
 }