Module registry

Module registry 

Source
Expand description

Actor registry, system orchestrator, and Erlang/OTP-style supervisor.

ActorRegistry is a thread-safe map of live actor mailboxes keyed by WID string. ActorSystem wraps the registry and provides high-level lifecycle operations. Supervisor adds automatic restart semantics.

Structs§

ActorEntry
Metadata stored in the registry alongside each actor’s mailbox sender.
ActorRegistry
Thread-safe registry of all live actors.
ActorSystem
High-level actor system: owns the registry and drives spawning/shutdown.
Supervisor
OTP-inspired supervision tree.

Enums§

SupervisorStrategy
Restart strategy for supervised actors — mirrors Erlang/OTP.

Type Aliases§

ActorFactory
Factory that produces a fresh boxed Actor on each invocation.