frp-signal 0.1.0

Lifecycle and telemetry signal contracts for frp persistence flows.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Pull-based reactive primitives for the infinite-db frp backend.
//!
//! Provides `Signal<T>` (writable reactive cells), `Computed<T>` (lazily
//! re-evaluated derived values), `Slot<T>` (named single-value input
//! receivers), and `DirtySet` (shared dirty-ID tracking).

pub mod computed;
pub mod dirty;
pub mod signal;
pub mod slot;

pub use computed::{Computed, DirtySink, SignalSubscribable};
pub use dirty::DirtySet;
pub use signal::Signal;
pub use slot::Slot;