2 unstable releases

Uses old Rust 2015

0.1.0 Jun 10, 2017
0.0.1 May 28, 2017

#5 in #sender-receiver

Download history 19/week @ 2023-11-26 3/week @ 2023-12-03 6/week @ 2023-12-10 14/week @ 2023-12-17 15/week @ 2023-12-24 12/week @ 2024-01-07 12/week @ 2024-01-14 3/week @ 2024-01-21 15/week @ 2024-02-04 15/week @ 2024-02-11 29/week @ 2024-02-18 29/week @ 2024-02-25 21/week @ 2024-03-03 30/week @ 2024-03-10

109 downloads per month
Used in 10 crates (4 directly)

MPL-2.0 license

52KB
884 lines

dharma crate provides high-level multi-threading support.

bridge module

bridge module provides similar functionality as standard spmc but instead of producing fixed pairs Sender-Receiver it allows to connect them freely, so we can have many one Sender sending to many Receivers and one Receiver listening to many senders in flexible, configurable way.

signaler module

On to of that we add Signaler which can subscribe receivers for signals (application defined events) creating notification mechanism.

event_loop module

On top of Signaler we add EventLoop, which is event queue assigned to thread. EventLoop has assigned Modules constituting separate application components. Modules can be assigned to EventLoops in flexible way making it easy to control tasks processed in threads. Modules do not share memory and communicate with signals.

dispatcher module

Every threading framework should provide mechanism for listening on system events. Dispatcher allows to register EventHandlers (wrapping file descriptors) and invokes them when system events they are assigned are ready to be processed.

system module

Last module contains helper code for and handling system signals.

Dependencies

~1.5MB
~36K SLoC