ewait 0.1.1

A thread-safe, asynchronous event system for Rust
Documentation
  • Coverage
  • 0%
    0 out of 8 items documented0 out of 5 items with examples
  • Size
  • Source code size: 18.8 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.37 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 37s Average build duration of successful builds.
  • all releases: 39s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • matthew-engi/ewait
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • matthew-engi

Ewait allows developers to create events that can trigger multiple callbacks concurrently, making it easier to build event-driven code.


Features

  • Concurrent execution of callbacks Every connected callback runs in its own Tokio task, allowing high-performance, parallel execution.

  • Simple API Provides intuitive methods to connect, disconnect, and fire events, keeping your code clean and maintainable.

[!WARNING] This library requires a Tokio runtime to function. Make sure your main function uses #[tokio::main] or you create a runtime manually.

[!CAUTION] This project is developed by a beginner in Rust.