Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

51 lines
1.2 KiB
C#

namespace System.Web.Mvc.Async {
using System;
using System.Threading;
public sealed class OperationCounter {
private int _count;
public int Count {
get {
return Thread.VolatileRead(ref _count);
}
}
public event EventHandler Completed;
private int AddAndExecuteCallbackIfCompleted(int value) {
int newCount = Interlocked.Add(ref _count, value);
if (newCount == 0) {
OnCompleted();
}
return newCount;
}
public int Decrement() {
return AddAndExecuteCallbackIfCompleted(-1);
}
public int Decrement(int value) {
return AddAndExecuteCallbackIfCompleted(-value);
}
public int Increment() {
return AddAndExecuteCallbackIfCompleted(1);
}
public int Increment(int value) {
return AddAndExecuteCallbackIfCompleted(value);
}
private void OnCompleted() {
EventHandler handler = Completed;
if (handler != null) {
handler(this, EventArgs.Empty);
}
}
}
}