11 references to AsynchronousListeners
System.Workflow.Runtime (11)
EventQueueState.cs (1)
72
this.asynchronousListeners.AddRange(copyFromState.
AsynchronousListeners
.ToArray());
WorkflowExecutor.cs (1)
1345
List<ActivityExecutorDelegateInfo<QueueEventArgs>> listeners = qService.GetQueue(name).
AsynchronousListeners
;
WorkflowQueue.cs (6)
36
qState.
AsynchronousListeners
.Add(subscriber);
39
if (qState.
AsynchronousListeners
.Count == 1)
48
bool removed = qService.GetQueueState(this.queueName).
AsynchronousListeners
.Remove(subscriber);
74
qState.
AsynchronousListeners
.Add(subscriber);
77
if (qState.
AsynchronousListeners
.Count == 1)
89
bool removed = qService.GetQueueState(this.queueName).
AsynchronousListeners
.Remove(subscriber);
WorkflowQueuingService.cs (3)
309
if (qState.
AsynchronousListeners
.Count != 0 || IsNestedListenersExist(queueName))
327
queueState.
AsynchronousListeners
.Count != 0)
363
foreach (ActivityExecutorDelegateInfo<QueueEventArgs> subscriber in qState.
AsynchronousListeners
)