What is async/await?
The async
and await
keywords were introduced in .NET 4.5 to make calling async methods easier and to make your async code more easily readable.
The async
/await
API is syntactic sugar that uses the TPL (Task Parallel Library) behind the scenes. If you wanted to start a new task and have code run on the UI thread after the task completes prior .NET 4.5, your code would have looked something like this:
async
and await
keywords were introduced in .NET 4.5 to make calling async methods easier and to make your async code more easily readable. async
/await
API is syntactic sugar that uses the TPL (Task Parallel Library) behind the scenes. If you wanted to start a new task and have code run on the UI thread after the task completes prior .NET 4.5, your code would have looked something like this:
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
// Start a new task (this launches a new thread) | |
Task.Factory.StartNew (() => { | |
// Do some work on a background thread, allowing the UI to remain responsive | |
DoSomething(); | |
// When the background work is done, continue with this code block | |
}).ContinueWith (task => { | |
DoSomethingOnTheUIThread(); | |
// the following forces the code in the ContinueWith block to be run on the | |
// calling thread, often the Main/UI thread. | |
}, TaskScheduler.FromCurrentSynchronizationContext ()); |
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
await DoSomething(); | |
DoSomethingOnTheUIThread(); |
No comments :
Post a Comment