16 references to waitQueue
System.ServiceModel (16)
System\ServiceModel\Channels\TransmissionStrategy.cs (16)
126
return (this.window.Count > 0 || this.
waitQueue
.Count > 0);
201
while (
waitQueue
.Count > 0)
202
waitQueue
.Dequeue().Abort(channel);
275
this.
waitQueue
.Count == 0); // Don't get ahead of anyone in the wait queue.
289
if (
waitQueue
.Count != 0)
304
if (this.closed || this.
waitQueue
.Count == 0)
311
count = Math.Min(count, this.
waitQueue
.Count);
316
IQueueAdder adder =
waitQueue
.Dequeue();
399
while (
waitQueue
.Count > 0)
400
waitQueue
.Dequeue().Fault(channel);
493
this.
waitQueue
.Enqueue(adder);
525
this.
waitQueue
.Enqueue(adder);
816
for (int i = 0; i < this.
waitQueue
.Count; i++)
818
IQueueAdder current = this.
waitQueue
.Dequeue();
823
this.
waitQueue
.Enqueue(current);
831
if (this.windowStart + this.window.Count + this.
waitQueue
.Count == Int64.MaxValue)