rt-local-core

Crates.iort-local-core
lib.rsrt-local-core
version0.1.3
sourcesrc
created_at2022-05-31 06:01:07.627648
updated_at2023-08-19 08:40:14.740328
descriptionThread local asynchronous runtime working with platform-specific event loops.
homepage
repositoryhttps://github.com/frozenlib/rt-local
max_upload_size
id597267
size17,108
frozenlib (frozenlib)

documentation

https://docs.rs/rt-local-core/

README

rt-local

Crates.io Docs.rs Actions Status

Thread local asynchronous runtime working with platform-specific event loops.

Example

use rt_local::spawn_local;
use rt_local::runtime::core::main;

#[main]
async fn main() {
  let task_a = spawn_local(async {
    // ...
  });
  let task_b = spawn_local(async {
    // ...
  });
  task_a.await;
  task_b.await;
}

Features

crate feature module backend
core platform independent
windows windows windows message loop

License

This project is dual licensed under Apache-2.0/MIT. See the two LICENSE-* files for details.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Commit count: 91

cargo fmt