Changeset 2543 for trunk/eraser
- Timestamp:
- 3/19/2012 2:09:11 AM (14 months ago)
- Location:
- trunk/eraser/Eraser.Manager
- Files:
-
- 2 edited
-
DirectExecutor.cs (modified) (1 diff)
-
Task.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/eraser/Eraser.Manager/DirectExecutor.cs
r2516 r2543 281 281 //time since we are done with this one. 282 282 if (task.Schedule is RecurringSchedule) 283 { 283 284 ScheduleTask(task); 285 } 286 287 //If the task is an execute on restart task or run immediately task, it is 288 //only run once and can now be restored to a manually run task 289 else if (task.Schedule == Schedule.RunOnRestart || 290 task.Schedule == Schedule.RunNow) 291 { 292 task.Schedule = Schedule.RunManually; 293 } 284 294 285 295 //Remove the actively executing task from our instance variable -
trunk/eraser/Eraser.Manager/Task.cs
r2516 r2543 295 295 } 296 296 297 //If the task is an execute on restart task or run immediately task, it is298 //only run once and can now be restored to a manually run task299 if (Schedule == Schedule.RunOnRestart || Schedule == Schedule.RunNow)300 Schedule = Schedule.RunManually;301 302 297 Progress = null; 303 298 Executing = false;
Note: See TracChangeset
for help on using the changeset viewer.
