eppo_core 10.0.0

Eppo SDK core library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Support for running activities in background.

mod async_runtime;
mod runtime;
#[cfg(not(target_arch = "wasm32"))]
mod thread;

pub use async_runtime::AsyncRuntime;
pub use runtime::BackgroundRuntime;
#[cfg(not(target_arch = "wasm32"))]
pub use thread::BackgroundThread;