summaryrefslogtreecommitdiff
path: root/solutions/20_threads/threads3.rs
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-07-05 13:39:50 +0200
committermo8it <mo8it@proton.me>2024-07-05 13:39:50 +0200
commit7123c7ae3a9605fbe962e4ef0a0f1424cd16fef8 (patch)
treec67f7e62bb9a179ae4fdbab492501cb6847e64c7 /solutions/20_threads/threads3.rs
parent77b687d501771c24bd83294d97b8e6f9ffa92d6b (diff)
parent4d9c346a173bb722b929f3ea3c00f84954483e24 (diff)
Merge remote-tracking branch 'upstream/main' into fix-enum-variant-inconsistency
Diffstat (limited to 'solutions/20_threads/threads3.rs')
-rw-r--r--solutions/20_threads/threads3.rs66
1 files changed, 66 insertions, 0 deletions
diff --git a/solutions/20_threads/threads3.rs b/solutions/20_threads/threads3.rs
new file mode 100644
index 0000000..cd2dfbe
--- /dev/null
+++ b/solutions/20_threads/threads3.rs
@@ -0,0 +1,66 @@
+use std::{sync::mpsc, thread, time::Duration};
+
+struct Queue {
+ length: u32,
+ first_half: Vec<u32>,
+ second_half: Vec<u32>,
+}
+
+impl Queue {
+ fn new() -> Self {
+ Self {
+ length: 10,
+ first_half: vec![1, 2, 3, 4, 5],
+ second_half: vec![6, 7, 8, 9, 10],
+ }
+ }
+}
+
+fn send_tx(q: Queue, tx: mpsc::Sender<u32>) {
+ // Clone the sender `tx` first.
+ let tx_clone = tx.clone();
+ thread::spawn(move || {
+ for val in q.first_half {
+ println!("Sending {val:?}");
+ // Then use the clone in the first thread. This means that
+ // `tx_clone` is moved to the first thread and `tx` to the second.
+ tx_clone.send(val).unwrap();
+ thread::sleep(Duration::from_millis(250));
+ }
+ });
+
+ thread::spawn(move || {
+ for val in q.second_half {
+ println!("Sending {val:?}");
+ tx.send(val).unwrap();
+ thread::sleep(Duration::from_millis(250));
+ }
+ });
+}
+
+fn main() {
+ // You can optionally experiment here.
+}
+
+#[cfg(test)]
+mod tests {
+ use super::*;
+
+ #[test]
+ fn threads3() {
+ let (tx, rx) = mpsc::channel();
+ let queue = Queue::new();
+ let queue_length = queue.length;
+
+ send_tx(queue, tx);
+
+ let mut total_received: u32 = 0;
+ for received in rx {
+ println!("Got: {received}");
+ total_received += 1;
+ }
+
+ println!("Number of received values: {total_received}");
+ assert_eq!(total_received, queue_length);
+ }
+}