[C#/TPL] Task 클래스 : 일정 주기 반복 태스크 시작하기
■ Task 클래스를 사용해 일정 주기 반복 태스크를 시작하는 방법을 보여준다. ▶ 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 93 94 95 96 |
using System; using System.Threading; using System.Threading.Tasks; namespace TestProject { /// <summary> /// 프로그램 /// </summary> class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 프로그램 시작하기 - Main(argumentArray) /// <summary> /// 프로그램 시작하기 /// </summary> /// <param name="argumentArray">인자 배열</param> private static void Main(string[] argumentArray) { Action action = () => { Console.WriteLine(DateTime.Now.ToString("HH:mm:ss")); }; StartPeriodicTask(action, 1000, 0, CancellationToken.None); Console.ReadKey(false); } #endregion #region 일정 주기 반복 태스크 시작하기 - StartPeriodicTask(action, interval, delay, token) /// <summary> /// 일정 주기 반복 태스크 시작하기 /// </summary> /// <param name="action"></param> /// <param name="interval">간격 (단위 : 밀리초)</param> /// <param name="delay">지연 (단위 : 밀리초)</param> /// <param name="token">취소 토큰</param> /// <returns>태스크</returns> private static Task StartPeriodicTask(Action action, int interval, int delay, CancellationToken token) { Action wrapperAction = () => { if(token.IsCancellationRequested) { return; } action(); }; Action mainAction = () => { TaskCreationOptions options = TaskCreationOptions.AttachedToParent; if(token.IsCancellationRequested) { return; } if(delay > 0) { Thread.Sleep(delay); } while(true) { if(token.IsCancellationRequested) { break; } Task.Factory.StartNew(wrapperAction, token, options, TaskScheduler.Current); if(token.IsCancellationRequested || interval == Timeout.Infinite) { break; } Thread.Sleep(interval); } }; return Task.Factory.StartNew(mainAction, token); } #endregion } } |
TestProject.zip