-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Nick Cameron <[email protected]>
- Loading branch information
Showing
9 changed files
with
291 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[package] | ||
name = "hello-world-join" | ||
version = "0.1.0" | ||
authors = ["Nicholas Cameron <[email protected]>"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
tokio = { version = "1.40.0", features = ["full"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
use tokio::{spawn, time::{sleep, Duration}}; | ||
|
||
async fn say_hello() { | ||
// Wait for a while before printing to make it a more interesting race. | ||
sleep(Duration::from_millis(100)).await; | ||
println!("hello"); | ||
} | ||
|
||
async fn say_world() { | ||
sleep(Duration::from_millis(100)).await; | ||
println!("world"); | ||
} | ||
|
||
#[tokio::main] | ||
async fn main() { | ||
let handle1 = spawn(say_hello()); | ||
let handle2 = spawn(say_world()); | ||
|
||
let _ = handle1.await; | ||
let _ = handle2.await; | ||
|
||
println!("!"); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[package] | ||
name = "hello-world-sleep" | ||
version = "0.1.0" | ||
authors = ["Nicholas Cameron <[email protected]>"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
tokio = { version = "1.40.0", features = ["full"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
use std::io::{stdout, Write}; | ||
use tokio::time::{sleep, Duration}; | ||
|
||
async fn say_hello() { | ||
print!("hello, "); | ||
// Flush stdout so we see the effect of the above `print` immediately. | ||
stdout().flush().unwrap(); | ||
} | ||
|
||
async fn say_world() { | ||
println!("world!"); | ||
} | ||
|
||
#[tokio::main] | ||
async fn main() { | ||
say_hello().await; | ||
// An async sleep function, puts the current task to sleep for 1s. | ||
sleep(Duration::from_millis(1000)).await; | ||
say_world().await; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[package] | ||
name = "hello-world-spawn" | ||
version = "0.1.0" | ||
authors = ["Nicholas Cameron <[email protected]>"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
tokio = { version = "1.40.0", features = ["full"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
use tokio::{spawn, time::{sleep, Duration}}; | ||
|
||
async fn say_hello() { | ||
// Wait for a while before printing to make it a more interesting race. | ||
sleep(Duration::from_millis(100)).await; | ||
println!("hello"); | ||
} | ||
|
||
async fn say_world() { | ||
sleep(Duration::from_millis(100)).await; | ||
println!("world!"); | ||
} | ||
|
||
#[tokio::main] | ||
async fn main() { | ||
spawn(say_hello()); | ||
spawn(say_world()); | ||
// Wait for a while to give the tasks time to run. | ||
sleep(Duration::from_millis(1000)).await; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.