reifydb-runtime 0.4.11

Runtime infrastructure for ReifyDB
Documentation
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2025 ReifyDB

//! Actor model for ReifyDB.
//!
//! This module provides an actor model that provides identical semantics whether
//! running on a single thread (WASM) or multiple OS threads (native).
//!
//! # Execution Model
//!
//! - **Native**: Actors run on threads with shared rayon pool for compute
//! - **WASM**: Messages are processed inline (synchronously) when sent
//!
//! All actor states must be `Send`.

pub mod context;
pub mod mailbox;
pub mod reply;
pub mod system;
pub mod testing;
pub mod timers;
pub mod traits;