7 references to s_notificationQueue
System.Web (7)
FileChangesMonitor.cs (7)
1156
lock (
s_notificationQueue
.SyncRoot) {
1273
s_notificationQueue
.Enqueue(new NotificationQueueItem(target.Callback, action, target.Alias));
1289
if (
s_notificationQueue
.Count > 0 && s_inNotificationThread == 0 && Interlocked.Exchange(ref s_inNotificationThread, 1) == 0) {
1314
lock (
s_notificationQueue
.SyncRoot) {
1315
if (
s_notificationQueue
.Count > 0) {
1316
nqi = (NotificationQueueItem)
s_notificationQueue
.Dequeue();
1345
if (
s_notificationQueue
.Count == 0 || Interlocked.Exchange(ref s_inNotificationThread, 1) != 0)