annotate Implab/IPromise.cs @ 25:9bf5b23650c9

refactoring
author cin
date Thu, 06 Feb 2014 01:08:59 +0400
parents e3935fdf59a2
children f0bf98e4d22c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
7ea9363fef6c inital progress handling
cin
parents:
diff changeset
1 using System;
7ea9363fef6c inital progress handling
cin
parents:
diff changeset
2 using System.Collections.Generic;
7ea9363fef6c inital progress handling
cin
parents:
diff changeset
3 using System.Linq;
7ea9363fef6c inital progress handling
cin
parents:
diff changeset
4 using System.Text;
7ea9363fef6c inital progress handling
cin
parents:
diff changeset
5
7ea9363fef6c inital progress handling
cin
parents:
diff changeset
6 namespace Implab
7ea9363fef6c inital progress handling
cin
parents:
diff changeset
7 {
25
9bf5b23650c9 refactoring
cin
parents: 19
diff changeset
8 public interface IPromise<T>: IPromiseBase
7
7ea9363fef6c inital progress handling
cin
parents:
diff changeset
9 {
25
9bf5b23650c9 refactoring
cin
parents: 19
diff changeset
10
9bf5b23650c9 refactoring
cin
parents: 19
diff changeset
11
9bf5b23650c9 refactoring
cin
parents: 19
diff changeset
12
7
7ea9363fef6c inital progress handling
cin
parents:
diff changeset
13
7ea9363fef6c inital progress handling
cin
parents:
diff changeset
14
7ea9363fef6c inital progress handling
cin
parents:
diff changeset
15 }
7ea9363fef6c inital progress handling
cin
parents:
diff changeset
16 }