Files
server/src/Notifications/ConnectionCounter.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
490 B
C#
Raw Normal View History

2018-08-23 15:48:40 -04:00
using System.Threading;
namespace Bit.Notifications
{
public class ConnectionCounter
{
private int _count = 0;
public void Increment()
{
Interlocked.Increment(ref _count);
}
public void Decrement()
{
Interlocked.Decrement(ref _count);
}
public void Reset()
{
_count = 0;
}
public int GetCount()
{
return _count;
}
}
}