|
|
|
|
|
by jcelerier
3223 days ago
|
|
> that programmer has to manually specify where he wants to make asynchronous vs. synchronous functions to get the optimal performance. programs aren't just pure computations. There are plenty of times when you want a specific event to happen at a specific time (as in, wall-clock), and plenty of times when you don't care when something computes as long as you end up getting a result at some point. |
|
Edit: as other poster mentioned, async/await and promises also don't help with precise wall-clock time but that is entirely different matter.