nodedb 0.3.0

Local-first, real-time, edge-to-cloud hybrid database for multi-modal workloads
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// SPDX-License-Identifier: BUSL-1.1

pub mod dispatch;
pub mod explain;
pub mod predicate;
pub mod preexec;
pub mod types;

pub use dispatch::{
    build_dependent_tx_class, build_static_tx_class, classify_dispatch, dispatch_calvin_or_fast,
    dispatch_dependent_read, is_dependent_predicate, is_write_plan, predicate_class,
};
pub use explain::calvin_explain_preamble;
pub use types::{DispatchClass, DispatchOutcome};