mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
9181b1bb91
indexer calls are done fully paralleled. events are dispatched on max of 2 threads.
57 lines
1.2 KiB
C#
57 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
|
|
namespace NzbDrone.Test.Common
|
|
{
|
|
public class ConcurrencyCounter
|
|
{
|
|
private int _items;
|
|
readonly object _mutex = new object();
|
|
readonly Dictionary<int, int> _threads = new Dictionary<int, int>();
|
|
|
|
public int MaxThreads { get { return _threads.Count; } }
|
|
|
|
public ConcurrencyCounter(int items)
|
|
{
|
|
_items = items;
|
|
}
|
|
|
|
public void WaitForAllItems()
|
|
{
|
|
while (_items != 0)
|
|
{
|
|
Thread.Sleep(500);
|
|
}
|
|
}
|
|
|
|
public int Start()
|
|
{
|
|
int threadId = Thread.CurrentThread.ManagedThreadId;
|
|
lock (_mutex)
|
|
{
|
|
|
|
_threads[threadId] = 1;
|
|
}
|
|
|
|
Console.WriteLine("Starting " + threadId);
|
|
return threadId;
|
|
}
|
|
|
|
public void SimulateWork(int sleepInMs)
|
|
{
|
|
var id = Start();
|
|
Thread.Sleep(sleepInMs);
|
|
Stop(id);
|
|
}
|
|
|
|
public void Stop(int id)
|
|
{
|
|
Console.WriteLine("Finished " + id);
|
|
lock (_mutex)
|
|
{
|
|
_items--;
|
|
}
|
|
}
|
|
}
|
|
} |