TaskScheduler——任务调度器

作者:追风剑情 发布于:2017-11-7 20:47 分类:C#

示例

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11.  
  12. namespace TastTest3
  13. {
  14. public partial class Form1 : Form
  15. {
  16. private readonly TaskScheduler m_syncContextTaskScheduler;
  17. public Form1()
  18. {
  19. InitializeComponent();
  20. //获得对一个同步上下文任务调度器的引用
  21. m_syncContextTaskScheduler = TaskScheduler.FromCurrentSynchronizationContext();
  22.  
  23. label1.Text = "Synchronization Context Task Scheduler Demo";
  24. }
  25.  
  26. private void Form1_Load(object sender, EventArgs e)
  27. {
  28. }
  29.  
  30. private CancellationTokenSource m_cts;
  31.  
  32. // 点击窗体任意区域
  33. protected override void OnMouseClick(MouseEventArgs e)
  34. {
  35. if (m_cts != null)//如果操作正在进行,取消它
  36. {
  37. m_cts.Cancel();
  38. m_cts = null;
  39. }
  40. else //操作没有开始,启动它
  41. {
  42. label1.Text = "Operation running";
  43. m_cts = new CancellationTokenSource();
  44.  
  45. //这个任务使用默认任务调度器,在一个线程池线程上执行
  46. //线程池上执行的任务不能更新UI组件,否则抛出InvalidOperationException
  47. Task<Int32> t = Task.Run(()=>Sum(m_cts.Token, 20000), m_cts.Token);
  48.  
  49. //下面这些任务使用同步上下文任务调度器,在GUI线程上执行
  50. t.ContinueWith(task => label1.Text = "Result: " + task.Result, CancellationToken.None, TaskContinuationOptions.OnlyOnRanToCompletion,
  51. m_syncContextTaskScheduler);
  52.  
  53. t.ContinueWith(task => label1.Text = "Operation canceled", CancellationToken.None, TaskContinuationOptions.OnlyOnCanceled,
  54. m_syncContextTaskScheduler);
  55.  
  56. t.ContinueWith(task => label1.Text = "Operation faulted", CancellationToken.None, TaskContinuationOptions.OnlyOnFaulted,
  57. m_syncContextTaskScheduler);
  58. }
  59. base.OnMouseClick(e);
  60. }
  61.  
  62. private static Int32 Sum(CancellationToken ct, Int32 n)
  63. {
  64. Int32 sum = 0;
  65. for (; n > 0; n--)
  66. {
  67. //在取消标志引用的CancellationTokenSource上调用Cancel,
  68. //下面这行代码就会抛出OperationCanceledException
  69. ct.ThrowIfCancellationRequested();
  70.  
  71. //如果n太大,会抛出System.OverflowException
  72. checked { sum += n; }
  73. }
  74. return sum;
  75. }
  76. }
  77. }

运行测试

1111.png

2222.png

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号