Crate agnostic_lite
source ·Expand description
Agnostic-Lite
agnostic-lite is WASM friendly and light version of agnostic, for users who want to write async runtime-agnostic crate.
English | 简体中文
§Introduction
agnostic-lite is WASM friendly and light version of agnostic, for users who want to write async runtime-agnostic crate.
agnostic-lite splits the big Runtime trait in agnostic in multiple small traits:
AsyncSpawner: trait for spawning tasksAsyncLocalSpawner: trait for spawning local tasksAsyncSleep: trait for sleep functionalityAsyncInterval: trait for interval functionalityAsyncTimeout: trait for timeout functionality
Builtin supports runtimes:
tokioasync-stdsmolwasm-bindgen-futures
§Installation
[dependencies]
agnostic-lite = "0.2"
§License
agnostic-lite is under the terms of both the MIT license and the
Apache License (Version 2.0).
See LICENSE-APACHE, LICENSE-MIT for details.
Copyright (c) 2024 Al Liu.
Modules§
- async_io
async-io - async_std
async-stdConcrete runtime implementations based onasync-stdruntime. - smol
smolConcrete runtime implementations based onsmolruntime. - tests
testortestUnit test for theRuntimeLite - time
timeTime related traits - tokio
tokioConcrete runtime implementations based ontokioruntime. - wasm
wasmConcrete runtime implementations based onwasm-bindgen-futures.
Enums§
- AfterHandleError
timeError ofAfterHandle’s output
Traits§
- AfterHandle
timeThe handle returned by theAsyncAfterSpawnerwhen a after future is spawned. - A spawner trait for spawning futures. Go’s
time.AfterFuncequivalent. - A spawner trait for spawning blocking.
- A spawner trait for spawning futures locally. Go’s
time.AfterFuncequivalent. - A spawner trait for spawning futures.
- A spawner trait for spawning futures.
- Detaches the task related to the join handle to let it keep running in the background.
- LocalAfterHandle
timeThe handle returned by theAsyncLocalAfterSpawnerwhen a after future is spawned. - Runtime trait