Executor.cs 454 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CommonLang.Concurrent
  6. {
  7. public interface Executor
  8. {
  9. Future Execute(Action command);
  10. Future Schedule(Action r, int delay);
  11. Future ScheduleAtFixedRate(Action r, int initial, int period);
  12. }
  13. public interface Future
  14. {
  15. long ID { get; }
  16. bool Cancel();
  17. bool IsCancelled { get; }
  18. }
  19. }