ELI5: The benefits of using "async" for this? #68
Answered
by
bandwiches
perigvennetier
asked this question in
Q&A
-
It's all in the title, I'm just curious and learning. Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
bandwiches
Apr 15, 2021
Replies: 1 comment
-
Use case would be real-time data sensitivity. You don't want to slow down or pause real-time data for menial sub-tasks like retrieving watchlists and other things. There is more to it than that, but essentially async programming allows you to off-load tasks into other threads so it doesn't block the main thread. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
perigvennetier
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use case would be real-time data sensitivity. You don't want to slow down or pause real-time data for menial sub-tasks like retrieving watchlists and other things. There is more to it than that, but essentially async programming allows you to off-load tasks into other threads so it doesn't block the main thread.