IFuture.cs 133 B

12345678
  1. namespace SharpCifs.Util.Sharpen
  2. {
  3. internal interface IFuture<T>
  4. {
  5. bool Cancel (bool mayInterruptIfRunning);
  6. T Get ();
  7. }
  8. }