■ Parallel 클래스의 ForEach 정적 메소드에서 CancellationToken 객체를 사용해 취소하는 방법을 보여준다.
▶ Program.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
using System; using System.Collections.Generic; using System.Drawing.Drawing2D; using System.Threading; using System.Threading.Tasks; namespace TestProject { /// <summary> /// 프로그램 /// </summary> class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 매트릭스 값 표시하기 - DisplayMatrixValue(elementArray) /// <summary> /// 매트릭스 값 표시하기 /// </summary> /// <param name="elementArray">요소 배열</param> private static void DisplayMatrixValue(float[] elementArray) { for(int i = 0; i < elementArray.Length; i++) { float element = elementArray[i] == -0f ? 0f : elementArray[i]; Console.Write(element); if(i < elementArray.Length - 1) { Console.Write(" "); } } Console.WriteLine(); } #endregion #region 매트릭스 회전하기 - RotateMatrix(list, degree, token) /// <summary> /// 매트릭스 회전하기 /// </summary> /// <param name="list">매트릭스 리스트</param> /// <param name="degree">각도</param> /// <param name="token">취소 토큰</param> private static void RotateMatrix(List<Matrix> list, float degree, CancellationToken token) { Parallel.ForEach ( list, new ParallelOptions { CancellationToken = token }, matrix => { matrix.Rotate(degree); DisplayMatrixValue(matrix.Elements); } ); } #endregion #region 프로그램 시작하기 - Mani() /// <summary> /// 프로그램 시작하기 /// </summary> private static void Main() { List<Matrix> list = new List<Matrix>(); for(int i = 0; i < 10000; i++) { list.Add(new Matrix(1f, 0f, 1f, 0f, 0f, 0f)); list.Add(new Matrix(1f, 0f, 1f, 0f, 0f, 0f)); list.Add(new Matrix(1f, 0f, 1f, 0f, 1f, 0f)); list.Add(new Matrix(1f, 0f, 1f, 0f, 1f, 1f)); } using CancellationTokenSource source = new CancellationTokenSource(1000); RotateMatrix(list, 30f, source.Token); } #endregion } } |