Add explanation for async programming (#2627)
parent
cc3a7e2ea0
commit
a0f493d872
1 changed files with 2 additions and 2 deletions
@ -1,6 +1,6 @@ |
||||
# Asynchronous |
||||
|
||||
Asynchronous programming is a style of programming that is mostly concerned with the asynchronous execution of tasks. Python has several asynchronous frameworks that are used to implement asynchronous programming. |
||||
Asynchronous programming is a type of parallel programming in which a unit of work is allowed to run separately from the primary application thread. When the work is complete, it notifies the main thread about completion or failure of the worker thread. |
||||
This style is mostly concerned with the asynchronous execution of tasks. Python has several asynchronous frameworks that are used to implement asynchronous programming. |
||||
|
||||
<ResourceGroupTitle>Free Content</ResourceGroupTitle> |
||||
<BadgeLink colorScheme='yellow' badgeText='Read' href='https://geekflare.com/python-asynchronous-web-frameworks/'>Top 5 Asynchronous Web Frameworks for Python</BadgeLink> |
||||
|
Loading…
Reference in new issue