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§
- Actor
Entry - Metadata stored in the registry alongside each actor’s mailbox sender.
- Actor
Registry - Thread-safe registry of all live actors.
- Actor
System - High-level actor system: owns the registry and drives spawning/shutdown.
- Supervisor
- OTP-inspired supervision tree.
Enums§
- Supervisor
Strategy - Restart strategy for supervised actors — mirrors Erlang/OTP.
Type Aliases§
- Actor
Factory - Factory that produces a fresh boxed
Actoron each invocation.