##// END OF EJS Templates
fixed blocking queue
fixed blocking queue

File last commit:

r138:f75cfa58e3d4 v2
r139:041b77711262 v2
Show More
ICancellable.cs
11 lines | 226 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab {
public interface ICancellable {
void Cancel();
void Cancel(Exception reason);
}
}