annotate Implab/IProgressNotifier.cs @ 148:e6d4b41f0101
v2
fixed timeout handling in promises
author |
cin |
date |
Wed, 15 Apr 2015 07:30: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 }
|