Please enable JavaScript.
Coggle requires JavaScript to display documents.
Concurrency - Coggle Diagram
Concurrency
Threads
-
-
switch out IO thread, schedule UI thread
-
-
-
-
vs Parallelism
Serial Execution = 1 task at a time from beginning to end without interruption; juggle 1 ball at a time
-
Synchronization
why = execution of threads is not predictable, cannot make assumptions about order of scheduling and execution
-