yjlee
yjlee

Reputation: 553

What is the difference between tokio::spawn and tokio::task::spawn in Rust?

I am making a web server capable of async operation using tokio.

I created a task via tokio::spawn, and I saw tokio::task::spawn working as well.

What is the difference between tokio::sapwn and tokio::task::spawn?

Upvotes: 14

Views: 3388

Answers (1)

Chayim Friedman
Chayim Friedman

Reputation: 71260

Nothing. tokio::spawn() is just a re-export of tokio::task::spawn() for ease of use.

Upvotes: 24

Related Questions