■ APM 패턴을 태스크로 변환하는 방법을 보여준다.
▶ 예제 코드 (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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 |
using System; using System.Threading; using System.Threading.Tasks; ... #region 테스트 1 대리자 - Test1Delegate(threadName) /// <summary> /// 테스트 1 대리자 /// </summary> /// <param name="threadName">스레드명</param> /// <returns>처리 결과</returns> private delegate string Test1Delegate(string threadName); #endregion #region 테스트 1 처리하기 - Test1(threadName) /// <summary> /// 테스트 1 처리하기 /// </summary> /// <param name="threadName">스레드명</param> /// <returns>처리 결과</returns> private string Test1(string threadName) { int threadID = Thread.CurrentThread.ManagedThreadId; bool isThreadPoolThread = Thread.CurrentThread.IsThreadPoolThread; Console.WriteLine("[{0} 스레드] 테스트 1 처리를 시작합니다...", threadID); Console.WriteLine("[{0} 스레드] 스레드 풀 스레드 여부 : {1}", threadID, isThreadPoolThread); Thread.Sleep(TimeSpan.FromSeconds(2)); Thread.CurrentThread.Name = threadName; Console.WriteLine("[{0} 스레드] 테스트 1 처리를 종료합니다...", threadID); return Thread.CurrentThread.Name; } #endregion #region 테스트 2 처리하기 - Test2(precedingTask) /// <summary> /// 테스트 2 처리하기 /// </summary> /// <param name="precedingTask">선행 태스크</param> private void Test2(Task<string> precedingTask) { int threadID = Thread.CurrentThread.ManagedThreadId; bool isThreadPoolThread = Thread.CurrentThread.IsThreadPoolThread; Console.WriteLine("[{0} 스레드] 테스트 2 처리를 시작합니다...", threadID); Console.WriteLine("[{0} 스레드] 선행 태스크 결과 : {1}", threadID, precedingTask.Result); Console.WriteLine("[{0} 스레드] 테스트 2 처리를 종료합니다...", threadID); } #endregion ... Test1Delegate test1Delegate = Test1; Task<string> task = Task<string>.Factory.FromAsync ( test1Delegate.BeginInvoke, test1Delegate.EndInvoke, "thread1", "상태값 #1" ); task.ContinueWith(precedingTask => Test2(precedingTask)); while(!task.IsCompleted) { Console.WriteLine(task.Status); Thread.Sleep(TimeSpan.FromSeconds(0.5)); } Console.WriteLine(task.Status); Thread.Sleep(TimeSpan.FromSeconds(1)); |