Usually, you don’t need to manually yield tasks while using async functions, because every line where you use the await keyword yields the thread. The manual task yielding becomes really important whenever you use non-async APIs like JSON decoding and encoding, etc.
https://buff.ly/3CX5Fna
https://buff.ly/3CX5Fna
Comments