annotate Implab/IProgressNotifier.cs @ 12:eb418ba8275b
promises
refactoring, added WorkerPool
author |
cin |
date |
Tue, 05 Nov 2013 19:55:34 +0400 |
parents |
|
children |
b0feb5b9ad1c |
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;
|
|
12 EventHandler<ProgressInitEventArgs> ProgressInit;
|
|
13 }
|
|
14 }
|