Skip to content

Instantly share code, notes, and snippets.

@AArnott
Created December 31, 2015 02:49
Show Gist options
  • Save AArnott/f85cef0466332aa78653 to your computer and use it in GitHub Desktop.
Save AArnott/f85cef0466332aa78653 to your computer and use it in GitHub Desktop.
Demonstrates how completing a Task can result in inlining of continuations' execution
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