hyperactor_multiprocess/
lib.rs

1/*
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 * All rights reserved.
4 *
5 * This source code is licensed under the BSD-style license found in the
6 * LICENSE file in the root directory of this source tree.
7 */
8
9//! Multiprocess actor system and support.
10
11#![feature(assert_matches)]
12#![feature(never_type)]
13#![deny(missing_docs)]
14
15/// TODO: add missing doc.
16pub mod ping_pong;
17pub mod proc_actor;
18/// TODO: add missing doc.
19pub mod scheduler;
20/// TODO: add missing doc.
21pub mod supervision;
22/// TODO: add missing doc.
23pub mod system;
24pub mod system_actor;
25
26/// py-spy wrapper.
27pub mod pyspy;
28
29pub use hyperactor::actor;
30pub use system::System;