waterui-internal 0.3.0

Internal implementation crate for WaterUI
1
2
3
4
5
6
7
8
9
10
11
12
//! Task utilities and runtime guardrails for async execution.

pub use executor_core::{spawn, spawn_local};
pub use native_executor::sleep;

mod runtime_guard;

pub use runtime_guard::{
    MainThreadStallProbeConfig, MonitoredLocalExecutor, RuntimeProbe, TaskPollSample,
    max_refresh_rate_hz, monitored_local_executor, monitored_local_executor_with_config,
    monitored_local_executor_with_probes,
};