Created
December 19, 2019 19:23
-
-
Save hedcler/d3564abc820e5ad9839c734d932db3b5 to your computer and use it in GitHub Desktop.
How threads works in Python
This file contains hidden or 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
without join: | |
+---+---+------------------ main-thread | |
| | | |
| +........... child-thread(short) | |
+.................................. child-thread(long) | |
with join | |
+---+---+------------------***********+### main-thread | |
| | | | |
| +...........join() | child-thread(short) | |
+......................join()...... child-thread(long) | |
with join and daemon thread | |
+-+--+---+------------------***********+### parent-thread | |
| | | | | |
| | +...........join() | child-thread(short) | |
| +......................join()...... child-thread(long) | |
+,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, child-thread(long + daemonized) | |
'-' main-thread/parent-thread/main-program execution | |
'.' child-thread execution | |
'#' optional parent-thread execution after join()-blocked parent-thread could | |
continue | |
'*' main-thread 'sleeping' in join-method, waiting for child-thread to finish | |
',' daemonized thread - 'ignores' lifetime of other threads; | |
terminates when main-programs exits; is normally meant for | |
join-independent tasks |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment