@@ -77,7 +77,7 @@ public void Add(AsyncTask item)
77
77
78
78
public AsyncTask Add ( Task task , Priority priority = Priority . Default )
79
79
{
80
- var asyncTask = new AsyncTask ( task , RemoveFromCurrentTasks , priority ) ;
80
+ var asyncTask = new AsyncTask ( task , AddToCurrentTasks , RemoveFromCurrentTasks , priority ) ;
81
81
Add ( asyncTask ) ;
82
82
return asyncTask ;
83
83
}
@@ -101,17 +101,9 @@ public AsyncTask GetNext()
101
101
102
102
if ( queue . Count > 0 )
103
103
{
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 ;
115
107
}
116
108
return null ;
117
109
}
@@ -151,6 +143,19 @@ public void Clear()
151
143
}
152
144
}
153
145
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
+
154
159
private void RemoveFromCurrentTasks ( AsyncTask task )
155
160
{
156
161
if ( curentTasks . Contains ( task ) ) { curentTasks . Remove ( task ) ; }
0 commit comments