annotate Implab/IProgressNotifier.cs @ 33:b255e4aeef17

removed the reference to the parent from the promise object this allows resolved promises to release parents and results they are holding. Added complete set of operations to IPromiseBase interface Subscribing to the cancellation event of the promise should not affect it's IsExclusive property More tests.
author cin
date Thu, 10 Apr 2014 02:39:29 +0400
parents b0feb5b9ad1c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12
eb418ba8275b refactoring, added WorkerPool
cin
parents:
diff changeset
1 using System;
eb418ba8275b refactoring, added WorkerPool
cin
parents:
diff changeset
2 using System.Collections.Generic;
eb418ba8275b refactoring, added WorkerPool
cin
parents:
diff changeset
3 using System.Linq;
eb418ba8275b refactoring, added WorkerPool
cin
parents:
diff changeset
4 using System.Text;
eb418ba8275b refactoring, added WorkerPool
cin
parents:
diff changeset
5
eb418ba8275b refactoring, added WorkerPool
cin
parents:
diff changeset
6 namespace Implab
eb418ba8275b refactoring, added WorkerPool
cin
parents:
diff changeset
7 {
eb418ba8275b refactoring, added WorkerPool
cin
parents:
diff changeset
8 public interface IProgressNotifier
eb418ba8275b refactoring, added WorkerPool
cin
parents:
diff changeset
9 {
eb418ba8275b refactoring, added WorkerPool
cin
parents:
diff changeset
10 event EventHandler<ValueEventArgs<string>> MessageUpdated;
eb418ba8275b refactoring, added WorkerPool
cin
parents:
diff changeset
11 event EventHandler<ValueEventArgs<float>> ProgressUpdated;
13
b0feb5b9ad1c small fixes, WorkerPool still incomplete
cin
parents: 12
diff changeset
12 event EventHandler<ProgressInitEventArgs> ProgressInit;
12
eb418ba8275b refactoring, added WorkerPool
cin
parents:
diff changeset
13 }
eb418ba8275b refactoring, added WorkerPool
cin
parents:
diff changeset
14 }