Mercurial > pub > ImplabNet
annotate Implab/IProgressNotifier.cs @ 136:e9e7940c7d98 v2
shared locks + tests
| author | cin |
|---|---|
| date | Mon, 16 Feb 2015 01:14:09 +0300 |
| parents | b0feb5b9ad1c |
| children |
| rev | line source |
|---|---|
| 12 | 1 using System; |
| 2 using System.Collections.Generic; | |
| 3 using System.Linq; | |
| 4 using System.Text; | |
| 5 | |
| 6 namespace Implab | |
| 7 { | |
| 8 public interface IProgressNotifier | |
| 9 { | |
| 10 event EventHandler<ValueEventArgs<string>> MessageUpdated; | |
| 11 event EventHandler<ValueEventArgs<float>> ProgressUpdated; | |
| 13 | 12 event EventHandler<ProgressInitEventArgs> ProgressInit; |
| 12 | 13 } |
| 14 } |
