Skip to main content

Module system

Module system 

Source
Expand description

Unified actor system for ReifyDB.

This module provides a unified system for all concurrent work:

  • Actor spawning on a shared work-stealing pool
  • CPU-bound compute with admission control

§Platform Differences

  • Native: Rayon thread pool for all actors
  • WASM: All operations execute inline (synchronously)

Re-exports§

pub use native::ActorHandle;
pub use native::ActorSystem;
pub use native::ActorSystemConfig;
pub use native::JoinError;

Modules§

native
Native actor system implementation.

Structs§

ActorConfig