Skip to main content

reifydb_runtime/actor/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2026 ReifyDB
3
4//! Lightweight actor system: each actor owns its mailbox, processes serially, and replies through a typed
5//! channel. `core::actors/` enumerates the actor identities the workspace knows about; this module is what
6//! those identities are scheduled and run on.
7
8pub mod context;
9pub mod mailbox;
10pub mod reply;
11pub mod system;
12pub mod testing;
13pub mod timers;
14pub mod traits;