Replies: 2 comments
-
Blazor didn't finish adopting threads in Net9 and so runtime doesn't consider it stable either. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks @pavelsavara . So basically, when .net9 is declared stable, we still don't have stable multi-threading. Are we 6 months away from stable webassembly multi-threading , or 1 year+ away? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Long story short, the more I read, the more confused I am -- what is supposed to work on .net9?
Also, some parts work in Blazor, some don't.
Say I have a blazor app.
@pavelsavara On the main thread, I'm parsing some huge json, more or less like this:
await Task.Run(() => long_consuming_task());
will this work?
Beta Was this translation helpful? Give feedback.
All reactions