Created
December 31, 2015 02:49
-
-
Save AArnott/f85cef0466332aa78653 to your computer and use it in GitHub Desktop.
Demonstrates how completing a Task can result in inlining of continuations' execution
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Threading; | |
using System.Threading.Tasks; | |
class Program | |
{ | |
static void Main() | |
{ | |
var tcs = new TaskCompletionSource<bool>(); | |
Task.Run(async delegate | |
{ | |
Console.WriteLine($"OTHER TASK: awaiting task on thread {Environment.CurrentManagedThreadId}"); | |
await tcs.Task; | |
Console.WriteLine($"OTHER TASK: Resuming on thread {Environment.CurrentManagedThreadId}"); | |
}); | |
Thread.Sleep(200); | |
Console.WriteLine($"MAIN THREAD: About to complete task on thread {Environment.CurrentManagedThreadId}"); | |
tcs.SetResult(false); | |
Console.WriteLine("MAIN THREAD: Just returned from completing Task."); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment