Please enable JavaScript.
Coggle requires JavaScript to display documents.
Goroutine
Core Concepts - Coggle Diagram
Goroutine
Core Concepts
-
Go Runtime
use case
running function in goroutine (async), basically
-
-
-
-
-
-
Channels
-
types
-
buffered channels
-
-
use case
-
Master Slave Pattern
-
elaborates task, and master does another thing like administration
-
-
-
Range & Close
-
-
usage
-
c, ok =: <- chan
ok = false if the channel is closed
-
Select
what is it
-
-
note
for CHANNEL, not CHANNEL'S VALUE
-
-
-