Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 430 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 430 Bytes

Ticked Async Executor

Rust based Async Executor which executes woken tasks only when it is ticked

Example

let executor = TickedAsyncExecutor::default();

executor.spawn_local("MyIdentifier", async move {}).detach();

// Make sure to tick your executor to run the tasks
executor.tick(DELTA, LIMIT);

Limitation

  • Does not work with the tokio runtime and async constructs that use the tokio runtime internally