■ Task<T> 클래스를 사용해 자식 태스크를 실행하는 방법을 보여준다.
▶ 예제 코드 (C#)
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 |
using System; using System.Threading; using System.Threading.Tasks; ... #region 테스트 처리하기 - Test(taskName, secondCount) /// <summary> /// 테스트 처리하기 /// </summary> /// <param name="taskName">태스크명</param> /// <param name="secondCount">초 카운트</param> /// <returns>스레드 ID</returns> private static int Test(string taskName, int secondCount) { int threadID = Thread.CurrentThread.ManagedThreadId; bool isThreadPoolThread = Thread.CurrentThread.IsThreadPoolThread; Console.WriteLine ( "[{0}] 스레드 ID : {1}, 스레드 풀 스레드 여부 : {2}", taskName, threadID, isThreadPoolThread ); Thread.Sleep(TimeSpan.FromSeconds(secondCount)); return threadID; } #endregion ... Task<int> parentTask = new Task<int> ( () => { Task<int> childTask = Task.Factory.StartNew ( () => Test("자식 태스크 #1", 5), TaskCreationOptions.AttachedToParent ); childTask.ContinueWith ( t => Test("자식 태스크 #2", 2), TaskContinuationOptions.AttachedToParent ); return Test("부모 태스크", 2); } ); parentTask.Start(); while(!parentTask.IsCompleted) { Console.WriteLine("[부모 태스크] 상태 : {0}", parentTask.Status); Thread.Sleep(TimeSpan.FromSeconds(0.5)); } Console.WriteLine("[부모 태스크] 상태 : {0}", parentTask.Status); Thread.Sleep(TimeSpan.FromSeconds(10)); |