标准取消操作模式——CancellationTokenSource

作者:追风剑情 发布于:2017-9-27 11:02 分类:C#

示例: .NET Framework提供的标准取消操作模式


  1. using System;
  2. using System.Threading;
  3.  
  4. namespace CancellationTokenSourceTest
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. //协作式取消和超时
  11. CancellationTokenSource cts = new CancellationTokenSource();
  12. //注册取消后的回调,会按倒序执行
  13. cts.Token.Register(() => { Console.WriteLine("token cts canceled callback1"); });
  14. cts.Token.Register(() => { Console.WriteLine("token cts canceled callback2"); });
  15.  
  16. ThreadPool.QueueUserWorkItem(o=>Count(cts.Token, 1000));
  17.  
  18. Console.WriteLine("Press <Enter> to cancel the operation.");
  19. Console.ReadLine();
  20. cts.Cancel();//如果Count方法已返回,Cancel没有任何效果
  21. Console.ReadLine();
  22. }
  23.  
  24. private static void Count(CancellationToken token, Int32 countTo)
  25. {
  26. for (int count = 0; count < countTo; count++)
  27. {
  28. if (token.IsCancellationRequested)
  29. {
  30. Console.WriteLine("Count is cancelled");
  31. break;//退出循环以停止操作
  32. }
  33. Console.WriteLine(count);
  34. Thread.Sleep(200);
  35. }
  36. Console.WriteLine("Count is done");
  37. }
  38. }
  39. }


运行测试

11111.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号