Concurrency
2 documents
Immutability
Mutable shared state is the root cause of most concurrency bugs. Default to immutable values; introduce mutability on...
kotlintypescript
No blocking the main thread
All lengthy work must run on background threads/tasks using platform async primitives:
csharpkotlinpythonswifttypescriptwebwindows