6 releases

0.3.4 Jul 7, 2024
0.3.3 Sep 12, 2020
0.3.2 May 17, 2020
0.3.1 Dec 27, 2019
0.1.0 Nov 3, 2018

#426 in Concurrency

Download history 64/week @ 2025-03-11 103/week @ 2025-03-18 50/week @ 2025-03-25 102/week @ 2025-04-01 109/week @ 2025-04-08 93/week @ 2025-04-15 110/week @ 2025-04-22 110/week @ 2025-04-29 87/week @ 2025-05-06 180/week @ 2025-05-13 48/week @ 2025-05-20 56/week @ 2025-05-27 13/week @ 2025-06-03 31/week @ 2025-06-10 60/week @ 2025-06-17 42/week @ 2025-06-24

147 downloads per month
Used in 7 crates (2 directly)

MPL-2.0 license

11KB
109 lines

mpsc_requests

docs.rs badge

For more info, see docs.rs.


lib.rs:

mpsc_requests rewritten for crossbeam, written by @stjepang (https://github.com/crossbeam-rs/crossbeam/issues/353#issuecomment-484013974)

crossbeam_requests is a small library built on top of crossbeam-channel but with the addition of the consumer responding with a message to the producer. Since the producer no longer only produces and the consumer no longer only consumes, the Producer is renamed to [RequestSender] and the Consumer is renamed to [RequestReceiver].

This library is based on crossbeam-requests instead of mpsc channels in the standard library because crossbeam has better performance and better compatibility with android.

A perfect use-case for this library is single-threaded databases which need to be accessed from multiple threads (such as SQLite)

Here's a diagram of the dataflow

|--------------------------------------------------------------------------------------| | Thread | Request thread | Respond thread | Request thread | |--------------------------------------------------------------------------------------| | Struct | RequestSender -> RequestReceiver -> ResponseSender -> ResponseReceiver | | (methods) | (request) -> (poll, poll_loop) -> (respond) -> (collect) | |--------------------------------------------------------------------------------------|

Examples

For more examples, see the examples directory

For even more examples see the tests in the tests directory

Simple echo example

use std::thread;
use mpsc_requests::channel;

type RequestType = String;
type ResponseType = String;
let (requester, responder) = channel::<RequestType, ResponseType>();
thread::spawn(move || {
    responder.poll_loop(|req, res_sender| {
        res_sender.respond(req);
    });
});
let msg = String::from("Hello");
let receiver = requester.request(msg.clone()).unwrap();
let res = receiver.collect().unwrap();
assert_eq!(res, msg);

Dependencies

~345KB