-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThreading.cs
More file actions
76 lines (68 loc) · 2.14 KB
/
Copy pathThreading.cs
File metadata and controls
76 lines (68 loc) · 2.14 KB
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
67
68
69
70
71
72
73
74
75
76
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using MtkClient.Library.Utils;
namespace MtkClient.Library
{
public class ThreadHandler : LogBase
{
private readonly List<Task> _tasks = new List<Task>();
private readonly CancellationTokenSource _cts = new CancellationTokenSource();
public CancellationToken CancellationToken => _cts.Token;
public bool IsCancelled => _cts.IsCancellationRequested;
public ThreadHandler(LogLevel logLevel = LogLevel.Info)
{
InitLogger(logLevel);
}
public Task RunAsync(Action action, string name = null)
{
var task = Task.Factory.StartNew(() =>
{
try
{
Debug($"Thread started: {name ?? "unnamed"}");
action();
Debug($"Thread completed: {name ?? "unnamed"}");
}
catch (OperationCanceledException)
{
Debug($"Thread cancelled: {name ?? "unnamed"}");
}
catch (Exception ex)
{
Error($"Thread error ({name ?? "unnamed"}): {ex.Message}");
}
}, _cts.Token, TaskCreationOptions.LongRunning, TaskScheduler.Default);
_tasks.Add(task);
return task;
}
public void Cancel()
{
_cts.Cancel();
}
public void WaitAll(int timeoutMs = -1)
{
try
{
if (timeoutMs > 0)
Task.WaitAll(_tasks.ToArray(), timeoutMs);
else
Task.WaitAll(_tasks.ToArray());
}
catch (AggregateException ae)
{
foreach (var ex in ae.InnerExceptions)
{
if (!(ex is OperationCanceledException))
Error($"WaitAll error: {ex.Message}");
}
}
}
public void Dispose()
{
Cancel();
_cts.Dispose();
}
}
}