Changeset 607
- Timestamp:
- 11/21/2008 12:45:53 PM (5 years ago)
- Location:
- branches/eraser6
- Files:
-
- 3 edited
-
Eraser/Program.cs (modified) (1 diff)
-
Manager/DirectExecutor.cs (modified) (2 diffs)
-
Manager/Executor.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/Eraser/Program.cs
r599 r607 95 95 } 96 96 97 public static DirectExecutor eraserClient; 97 /// <summary> 98 /// The global Executor instance. 99 /// </summary> 100 public static Executor eraserClient; 98 101 } 99 102 100 publicclass Settings : Manager.SettingsManager103 class Settings : Manager.SettingsManager 101 104 { 102 105 /// <summary> -
branches/eraser6/Manager/DirectExecutor.cs
r605 r607 39 39 /// is run without the help of a Service. 40 40 /// </summary> 41 public class DirectExecutor : Executor , IDisposable41 public class DirectExecutor : Executor 42 42 { 43 43 public DirectExecutor() … … 50 50 } 51 51 52 void IDisposable.Dispose()52 public override void Dispose() 53 53 { 54 54 thread.Abort(); -
branches/eraser6/Manager/Executor.cs
r495 r607 32 32 /// abstract as they each will have their own ways of dealing with tasks. 33 33 /// </summary> 34 public abstract class Executor 34 public abstract class Executor : IDisposable 35 35 { 36 #region IDisposable members 37 public abstract void Dispose(); 38 #endregion 39 36 40 /// <summary> 37 41 /// Starts the execution of tasks queued.
Note: See TracChangeset
for help on using the changeset viewer.
