Await async
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
<message>Write the content here to display this box</message>
<message>Write the content here to display this box</message>In C#, you have the Async Await pattern which sections your code on compiler level and chunks it up in the dispatcher queue in order to avoid user input blocking/freezing.
 
In C#, you have the async await pattern which sections your code on compiler level and chunks it up in the dispatcher queue in order to avoid user input blocking/freezing.


Depending on what you want to do:
Depending on what you want to do:


* Just adapt to an existing api that uses async?: Call it as a normal function and append with GetResult()
* Just adapt to an existing Api that uses Async? Call it as a normal function and append with GetResult()
* Avoid UI blocking in Turnkey? In Turnkey, this does not apply since UI interaction is in browser.
* Avoid UI blocking in Turnkey? In Turnkey, this does not apply since UI interaction is in the browser.
* Avoid UI blocking in MDriven generic code? See: [[Training:IAsyncSupportService|Training:IAsyncSupportService - MDrivenWiki]]
* Avoid UI blocking in MDriven generic code? '''See:''' [[Documentation:IAsyncSupportService|IAsyncSupportService - MDrivenWiki]]
[[Category:UI]]
[[Category:MDriven Turnkey]]

Latest revision as of 05:06, 5 March 2025

This page was created by Hans.karlsen@mdriven.net on 2024-05-21. Last edited by Stephanie@mdriven.net on 2025-03-05.

In C#, you have the Async Await pattern which sections your code on compiler level and chunks it up in the dispatcher queue in order to avoid user input blocking/freezing.

Depending on what you want to do:

  • Just adapt to an existing Api that uses Async? Call it as a normal function and append with GetResult()
  • Avoid UI blocking in Turnkey? In Turnkey, this does not apply since UI interaction is in the browser.
  • Avoid UI blocking in MDriven generic code? See: IAsyncSupportService - MDrivenWiki