annotate Implab/ITaskController.cs @ 47:b181f7bcb259
interactive logger
refactoring, interactive tarce log almost complete
author |
cin |
date |
Thu, 17 Apr 2014 18:49:36 +0400 |
parents |
9bf5b23650c9 |
children |
706fccb85524 |
rev |
line source |
12
|
1 using System;
|
|
2 using System.Collections.Generic;
|
|
3 using System.Linq;
|
|
4 using System.Text;
|
|
5
|
|
6 namespace Implab {
|
25
|
7 public interface ITaskController: IProgressHandler, ICancellable {
|
|
8 bool IsCancelled {
|
12
|
9 get;
|
|
10 }
|
25
|
11
|
|
12 event EventHandler Cancelled;
|
12
|
13 }
|
|
14 }
|