annotate Implab/IProgressNotifier.cs @ 125:f803565868a4
v2
improved performance of promises
author |
cin |
date |
Thu, 15 Jan 2015 12:09:20 +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 }
|