Expand description
Runtime values.
Structs§
- Actor
Cell - Internal state of a
conc.Actor. Protected by aMutexso that concurrent callers serialise on message delivery (the actor processes one message at a time). Thehandlerclosure is called on the calling VM’s thread — no extra OS thread required — which lets it invoke arbitrary effects (sql, net, …) through the same handler chain.