-
Notifications
You must be signed in to change notification settings - Fork 561
/
Copy pathTaskThreadManager.cs
66 lines (57 loc) · 2.3 KB
/
TaskThreadManager.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
using System;
using System.Threading;
using System.Threading.Tasks;
using Serilog;
namespace Abot2.Util
{
/// <summary>
/// A ThreadManager implementation that will use tpl Tasks to handle concurrency.
/// </summary>
public class TaskThreadManager : ThreadManager
{
readonly CancellationTokenSource _cancellationTokenSource = new CancellationTokenSource();
public TaskThreadManager(int maxConcurrentTasks)
:this(maxConcurrentTasks, null)
{
}
public TaskThreadManager(int maxConcurrentTasks, CancellationTokenSource cancellationTokenSource)
: base(maxConcurrentTasks)
{
_cancellationTokenSource = cancellationTokenSource ?? _cancellationTokenSource;
}
public override void AbortAll()
{
_cancellationTokenSource.Cancel();
base.AbortAll();
}
public override void Dispose()
{
base.Dispose();
if (!_cancellationTokenSource.IsCancellationRequested)
_cancellationTokenSource.Cancel();
}
protected override void RunActionOnDedicatedThread(Action action)
{
Task.Factory
.StartNew(() => RunAction(action), _cancellationTokenSource.Token)
.ContinueWith(HandleAggregateExceptions, TaskContinuationOptions.OnlyOnFaulted);
}
/// <summary>
/// This was added to resolve the issue described here
/// http://stackoverflow.com/questions/7883052/a-tasks-exceptions-were-not-observed-either-by-waiting-on-the-task-or-accessi
/// </summary>
private void HandleAggregateExceptions(Task task)
{
if (task?.Exception == null)
return;
var aggException = task.Exception.Flatten();
foreach (var exception in aggException.InnerExceptions)
{
if(_cancellationTokenSource.IsCancellationRequested)
Log.Warning("CancellationRequested Aggregate Exception: {0}", exception);//If the task was cancelled then this exception is expected happen and we dont care
else
Log.Error("Aggregate Exception: {0}", exception);//If the task was not cancelled then this is an error
}
}
}
}