annotate Implab/ICancellable.cs @ 17:7cd4a843b4e4 promises

Improved worker pool
author cin
date Fri, 08 Nov 2013 01:25:42 +0400
parents eb418ba8275b
children c761fc982e1d
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 public interface ICancellable {
eb418ba8275b refactoring, added WorkerPool
cin
parents:
diff changeset
8 bool Cancel();
eb418ba8275b refactoring, added WorkerPool
cin
parents:
diff changeset
9 }
eb418ba8275b refactoring, added WorkerPool
cin
parents:
diff changeset
10 }