actox

This crate implements a simple event-loop and a cheap actor implementation with a global actor-pool

Latest version: 0.2.1 registry icon
Maintenance score
0
Safety score
0
Popularity score
2
Check your open source dependency risks. Get immediate insight about security, stability and licensing risks.
Security
  Vulnerabilities
Version Suggest Low Medium High Critical
0.2.1 0 0 0 0 0
0.2.0 0 0 0 0 0
0.1.5 0 0 0 0 0
0.1.4 0 0 0 0 0
0.1.3 0 0 0 0 0
0.1.2 0 0 0 0 0
0.1.1 0 0 0 0 0
0.1.0 0 0 0 0 0

Stability
Latest release:

0.2.1 - This version may not be safe as it has not been updated for a long time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform

Licensing

Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.

BSD-2-Clause   -   BSD 2-Clause "Simplified" License

Not a wildcard

Not proprietary

OSI Compliant


MIT   -   MIT License

Not a wildcard

Not proprietary

OSI Compliant



License License AppVeyor CI docs.rs crates.io Download numbers dependency status

actox

Welcome to my actox-library 🎉

actox is small and dependency-less crate that implements a shared message dispatcher to publish and subscribe on multible topics from different threads. This allows for trivial multi-producer/multi-consumer networks without the need to manually establish and manage dedicated communication channels between all participants.

Design considerations

This crate is opinionated. The main goal is to have simple code that hopefully just works. No external dependencies, no super-duper custom lock-free maps etc. No unsafe. Therefore is probably not super efficient or fast (even though it achieves a throughput of about 7 million messages per second on my platform).