Skip to content

Commit 606c8a4

Browse files
authored
Merge pull request #4103 from shaedrich/async-await
Add topic "async/await"
2 parents b95c7eb + 511b65a commit 606c8a4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

topics/async-await/index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
topic: async-await
3+
display_name: async/await
4+
short_description: async/await allows an asynchronous, non-blocking function to be structured in a way similar to an ordinary synchronous function.
5+
related: callback, coroutines, async, promise, future, actor-model, continuation-passing-style, concurrent-computing
6+
released: 2007
7+
wikipedia_url: https://en.wikipedia.org/wiki/Async/await
8+
---
9+
In computer programming, the **async/await** pattern is a syntactic feature of many programming languages that allows an asynchronous, non-blocking function to be structured in a way similar to an ordinary synchronous function, and is primarily intended to provide opportunities for the program to execute other code while waiting for a long-running, asynchronous task to complete, usually represented by promises or similar data structures.

0 commit comments

Comments
 (0)