Skip to main content

reifydb_sub_task/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright (c) 2025 ReifyDB
3#![cfg_attr(not(debug_assertions), deny(clippy::disallowed_methods))]
4#![cfg_attr(debug_assertions, warn(clippy::disallowed_methods))]
5#![cfg_attr(not(debug_assertions), deny(warnings))]
6#![allow(clippy::tabs_in_doc_comments)]
7
8pub mod context;
9#[cfg(not(reifydb_single_threaded))]
10pub mod coordinator;
11#[cfg(not(reifydb_single_threaded))]
12pub mod factory;
13#[cfg(not(reifydb_single_threaded))]
14pub mod handle;
15pub mod registry;
16pub mod schedule;
17#[cfg(not(reifydb_single_threaded))]
18pub mod subsystem;
19pub mod task;