5 unstable releases

0.3.3 Sep 12, 2020
0.3.2 May 17, 2020
0.3.1 Dec 27, 2019
0.2.0 Nov 4, 2018
0.1.0 Nov 3, 2018

#41 in #mpsc

Download history 29/week @ 2023-12-11 27/week @ 2023-12-18 37/week @ 2023-12-25 117/week @ 2024-01-01 43/week @ 2024-01-08 40/week @ 2024-01-15 58/week @ 2024-01-22 82/week @ 2024-01-29 64/week @ 2024-02-05 44/week @ 2024-02-12 45/week @ 2024-02-19 109/week @ 2024-02-26 66/week @ 2024-03-04 61/week @ 2024-03-11 61/week @ 2024-03-18 74/week @ 2024-03-25

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

MPL-2.0 license

10KB
109 lines

mpsc_requests

test

For more info look at the docs linked above


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

~420KB