annotate Implab/IProgressNotifier.cs @ 76:c761fc982e1d
 v2 
Refactoring of the IPromise<T> interface
Added tests
 | author | 
 cin | 
 | date | 
 Wed, 10 Sep 2014 17:53:05 +0400 | 
 | 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 }
 |