Jo Shields 3c1f479b9d Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
2015-04-07 09:35:12 +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 Volatile.Read(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);
}
}
}
}