THE ACTOR MODEL
Each actor is a closed state machine with a private inbox. The engine guarantees that within a tick, an actor processes messages in the exact order they were enqueued, using the actor’s own identifier as a tiebreak across concurrent senders.
Actors never share memory. All communication is an immutable Event
envelope routed through the scheduler. This is the load-bearing constraint
that makes deterministic replay possible at 8192-way concurrency.