Mercurial > pub > ImplabNet
annotate Implab/IProgressHandler.cs @ 196:40d7fed4a09e
fixed promise chaining behavior, the error handler doesn't handle result or cancellation handlers exceptions these exceptions are propagated to the next handlers.
| author | cin |
|---|---|
| date | Mon, 29 Aug 2016 23:15:51 +0300 |
| parents | eb418ba8275b |
| 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 public interface IProgressHandler { | |
| 8 string Message { | |
| 9 get; | |
| 10 set; | |
| 11 } | |
| 12 float CurrentProgress { | |
| 13 get; | |
| 14 set; | |
| 15 } | |
| 16 void InitProgress(float current, float max, string message); | |
| 17 } | |
| 18 } |
