Await async remote procedure calls #202
Closed
vojtechmusilek
started this conversation in
Feature Request
Replies: 1 comment 2 replies
-
I believe this is on the roadmap under wishlist. After sitting on this
awhile I probably won't be implementing it to be honest. There's a lot of
technical reasons why this doesn't work.
…On Mon, Jan 2, 2023, 4:02 AM Vojtěch Musílek ***@***.***> wrote:
Currently after calling Rpc code continues before Rpc finishes.
Add option to await this call when Rpc is async.
Example:
async void Something()
{
...
await ServerSomething()
...
}
[ServerRpc]async void ServerSomething()
{
...
}
—
Reply to this email directly, view it on GitHub
<#202>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AGPJC3UX77GJBKIAOVSQRCDWQKKQ5ANCNFSM6AAAAAATOULT4E>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently after calling Rpc code continues before Rpc finishes.
Add option to await this call when Rpc is async.
Example:
Beta Was this translation helpful? Give feedback.
All reactions