Skip to content

Commit 5ad15d6

Browse files
author
mofrison
committed
Added Action onStart
1 parent 597afc0 commit 5ad15d6

File tree

2 files changed

+21
-13
lines changed

2 files changed

+21
-13
lines changed

AsyncTask.cs

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,20 @@ public enum Priority { Default, High, Interrupt }
1010
public readonly Priority priority;
1111
private readonly Task task;
1212
private CancellationTokenSource cancellationToken;
13+
private readonly System.Action<AsyncTask> onStart;
1314
private readonly System.Action<AsyncTask> onExit;
1415

15-
public AsyncTask(Task task, System.Action<AsyncTask> onExit, Priority priority)
16+
public AsyncTask(Task task, System.Action<AsyncTask> onStart, System.Action<AsyncTask> onExit, Priority priority)
1617
{
1718
this.task = task;
1819
this.priority = priority;
20+
this.onStart = onStart;
1921
this.onExit = onExit;
2022
}
2123

2224
public async System.Threading.Tasks.Task Run()
2325
{
26+
onStart?.Invoke(this);
2427
cancellationToken = new CancellationTokenSource();
2528
await task(cancellationToken);
2629
cancellationToken.Dispose();

AsyncTaskQueue.cs

+17-12
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public void Add(AsyncTask item)
7777

7878
public AsyncTask Add(Task task, Priority priority = Priority.Default)
7979
{
80-
var asyncTask = new AsyncTask(task, RemoveFromCurrentTasks, priority);
80+
var asyncTask = new AsyncTask(task, AddToCurrentTasks, RemoveFromCurrentTasks, priority);
8181
Add(asyncTask);
8282
return asyncTask;
8383
}
@@ -101,17 +101,9 @@ public AsyncTask GetNext()
101101

102102
if (queue.Count > 0)
103103
{
104-
if(curentTasks.Count < maxNumberOfThreads)
105-
{
106-
curentTasks.Insert(0, queue[0]);
107-
queue.Remove(curentTasks[0]);
108-
return curentTasks[0];
109-
}
110-
else
111-
{
112-
throw new Exception(
113-
string.Format("[{0}] error: the list of current tasks is full, wait until one of the current tasks is completed", this));
114-
}
104+
var nextTask = queue[0];
105+
queue.Remove(nextTask);
106+
return nextTask;
115107
}
116108
return null;
117109
}
@@ -151,6 +143,19 @@ public void Clear()
151143
}
152144
}
153145

146+
private void AddToCurrentTasks(AsyncTask task)
147+
{
148+
if (curentTasks.Count < maxNumberOfThreads)
149+
{
150+
curentTasks.Insert(0, task);
151+
}
152+
else
153+
{
154+
throw new Exception(
155+
string.Format("[{0}] error: the list of current tasks is full, wait until one of the current tasks is completed", this));
156+
}
157+
}
158+
154159
private void RemoveFromCurrentTasks(AsyncTask task)
155160
{
156161
if (curentTasks.Contains(task)) { curentTasks.Remove(task); }

0 commit comments

Comments
 (0)