Programmer based in Munich, Germany, interested in Rust, programming, science, etc. He/him

GitHub: https://github.com/Aloso – Mastodon: https://hachyderm.io/@aloso

  • 1 Post
  • 3 Comments
Joined 1 year ago
cake
Cake day: June 11th, 2023

help-circle



  • There are executors for more specific use cases.

    • For example, bastion is a “Highly-available Distributed Fault-tolerant Runtime”, inspired by Erlang, and including an async executor.
    • embassy includes an async executor specifically for embedded systems.
    • fuchsia-async is an executor for use in the Fuchsia OS.
    • wasm-bindgen-futures converts Rust Futures to JavaScript Promises and schedules them to run to completion. It could also be seen as a (very basic) executor.