-
Notifications
You must be signed in to change notification settings - Fork 1.9k
IO suspend methods are mixed into FutureController #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Not applicable anymore. Async IO can be use in any async coroutine now. |
qwwdfsad
added a commit
that referenced
this issue
May 10, 2023
To address IDEA's responsiveness issues when reading/writing changelog Commit #2 -- re-add CHANGES.md
nikitabobko
added a commit
that referenced
this issue
Aug 16, 2023
The compilation error appeared after KT-59665
nikitabobko
added a commit
that referenced
this issue
Aug 16, 2023
The compilation error appeared after KT-59665
qwwdfsad
pushed a commit
that referenced
this issue
Aug 17, 2023
woainikk
added a commit
that referenced
this issue
Aug 18, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Suspension functions for async IO are placed in FutureController due to:
suspend
functionsI suggest to wrap async IO operations into CompletableFuture's instead and perform
await
on these futures. This would require to write:instead of
but IMO it's much more clear that a suspend point is introduced in the first example.
The text was updated successfully, but these errors were encountered: