fix: add solution for threads3 ownership issue

This commit is contained in:
KAUSTUBHOG 2025-11-10 23:59:13 +05:30
parent 2cab96be52
commit a83950a095
2 changed files with 15 additions and 12 deletions

View File

@ -15,9 +15,6 @@ impl Queue {
}
fn send_tx(q: Queue, tx: mpsc::Sender<u32>) {
// TODO: We want to send `tx` to both threads. But currently, it is moved
// into the first thread. How could you solve this problem?
// Destructure the Queue to move first_half and second_half independently
let Queue {
first_half,

View File

@ -15,22 +15,28 @@ impl Queue {
}
fn send_tx(q: Queue, tx: mpsc::Sender<u32>) {
// Clone the sender `tx` first.
let tx_clone = tx.clone();
// Destructure the Queue to move first_half and second_half independently
let Queue {
first_half,
second_half,
} = q;
// Clone the sender so both threads can send to the same receiver
let tx1 = tx.clone();
let tx2 = tx;
thread::spawn(move || {
for val in q.first_half {
for val in 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();
tx1.send(val).unwrap();
thread::sleep(Duration::from_millis(250));
}
});
thread::spawn(move || {
for val in q.second_half {
for val in second_half {
println!("Sending {val:?}");
tx.send(val).unwrap();
tx2.send(val).unwrap();
thread::sleep(Duration::from_millis(250));
}
});
@ -59,4 +65,4 @@ mod tests {
received.sort();
assert_eq!(received, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
}
}
}