Mercurial > pub > ImplabNet
comparison Implab/IProgressHandler.cs @ 12:eb418ba8275b promises
refactoring, added WorkerPool
| author | cin |
|---|---|
| date | Tue, 05 Nov 2013 19:55:34 +0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 11:6ec82bf68c8e | 12:eb418ba8275b |
|---|---|
| 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 } |
