You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,21 @@ This repo is not a complete application or project, rather it's a collection of
50
50
#### Knowledge Base
51
51
As we all know, in general, running multiple threads simulteneously is equivalent to running several programs at the same time. In such case, threading in Python is a very popular process to attain concurrency and parallelism. Using threading module in a Python program gives us several key advatages such as sharing same data space and operating on light-weight process in order to avoid unnecessary memory overhead.
52
52
53
+
Topics
54
+
-_thread module
55
+
- threading module
56
+
- Extending Thread
57
+
- Getting Current Thread Information
58
+
- Daemon Threads
59
+
- Joining Threads
60
+
- Time Threads
61
+
- Events: Communication Between Threads
62
+
- Locking Resources
63
+
- Limiting Concurrent Access to Resources
64
+
- Thread-Specific Data
65
+
66
+
67
+
53
68
#### Functional Description
54
69
All the following files are avilable in the 'script' directory.
55
70
<br /> *Please note that this description section may not be fully updated as of today as I update this section once a week. You might find more scripts in the acctual application directory. Each script has a concise in-script description of the program.*
0 commit comments