本文通過TaskCompletionSource,實現非同步轉同步 首先有一個非同步方法,如下非同步任務延時2秒後,返回一個結果 如何使用TaskCompletionSource將此非同步方法轉成同步呢? TaskCompletionSource使用步驟: 測試結果: 關鍵字:非同步轉同步,TaskCompl ...
本文通過TaskCompletionSource,實現非同步轉同步
首先有一個非同步方法,如下非同步任務延時2秒後,返回一個結果
1 private static async Task<string> TestWithResultAsync() 2 { 3 Debug.WriteLine("1. 非同步任務start……"); 4 await Task.Delay(2000); 5 Debug.WriteLine("2. 非同步任務end……"); 6 return "2秒以後"; 7 }
如何使用TaskCompletionSource將此非同步方法轉成同步呢?
1 private void TaskCompleteSourceButton_OnClick(object sender, RoutedEventArgs e) 2 { 3 var result = AwaitByTaskCompleteSource(TestWithResultAsync); 4 Debug.WriteLine($"4. TaskCompleteSource_OnClick end:{result}"); 5 }
TaskCompletionSource使用步驟:
- 獲取var sourceTask =TaskCompletionSource.Task,
- 等待此sourceTask結果-sourceTask.Result
- 設置設置sourceTask.Result的結果值
1 private string AwaitByTaskCompleteSource(Func<Task<string>> func) 2 { 3 var taskCompletionSource = new TaskCompletionSource<string>(); 4 var task1 = taskCompletionSource.Task; 5 Task.Run(async () => 6 { 7 var result = await func.Invoke(); 8 taskCompletionSource.SetResult(result); 9 }); 10 var task1Result = task1.Result; 11 Debug.WriteLine($"3. AwaitByTaskCompleteSource end:{task1Result}"); 12 return task1Result; 13 }
測試結果:
關鍵字:非同步轉同步,TaskCompletionSource