18 releases (1 stable)

1.0.0 Sep 11, 2023
0.10.3 Aug 31, 2023
0.10.2 Jan 26, 2023
0.10.1 Jan 15, 2022
0.8.4 Feb 28, 2020

#184 in Encoding

Download history 1852/week @ 2023-12-11 1467/week @ 2023-12-18 1768/week @ 2023-12-25 2751/week @ 2024-01-01 2924/week @ 2024-01-08 3296/week @ 2024-01-15 2988/week @ 2024-01-22 3208/week @ 2024-01-29 1969/week @ 2024-02-05 3798/week @ 2024-02-12 3057/week @ 2024-02-19 3290/week @ 2024-02-26 2921/week @ 2024-03-04 2150/week @ 2024-03-11 1381/week @ 2024-03-18 2253/week @ 2024-03-25

8,923 downloads per month
Used in 3 crates

MIT/Apache

82KB
1.5K SLoC

procspawn

Build Status Crates.io Documentation rustc 1.65.0

This crate provides the ability to spawn processes with a function similar to thread::spawn. Instead of closures it passes serde serializable objects. The return value from the spawned closure also must be serializable and can then be retrieved from the returned join handle.

If the spawned functiom causes a panic it will also be serialized across the process boundaries.

Example

Step 1: invoke procspawn::init at a point early in your program (somewhere at the beginning of the main function). Whatever happens before that point also happens in your spawned functions.

procspawn::init();

Step 2: now you can start spawning functions:

let data = vec![1, 2, 3, 4];
let handle = procspawn::spawn(data, |data| {
    println!("Received data {:?}", &data);
    data.into_iter().sum::<i64>()
});
let result = handle.join().unwrap();

Dependencies

~7–19MB
~289K SLoC