Updated 'src/concurrency/message_passing'.

This commit is contained in:
Hector PENG
2026-04-06 18:42:06 +08:00
parent 7e78b2014e
commit c8ebdb9dfb
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ fn main() {
for val in vals {
tx1.send(val).unwrap();
thread::sleep(Duration::from_secs(1));
thread::sleep(Duration::from_millis(500));
}
});