2015年10月22日 星期四

ConfigureAwait.aspx

ConfigureAwait.aspx
  1. <%@ Page Language="C#" AutoEventWireup="true" Async="true" CodeBehind="ConfigureAwait.aspx.cs" Inherits="ConcurrencyWebForm.ConfigureAwait" %>
  2.  
  3. <!DOCTYPE html>
  4.  
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head runat="server">
  7. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  8. <title></title>
  9. </head>
  10. <body>
  11. <form id="form1" runat="server">
  12. <div>
  13. <asp:Button ID="btnSyncWithoutConfigureAwait" runat="server" Text="SyncWithoutConfigureAwait" OnClick="btnSyncWithoutConfigureAwait_Click" />
  14. <br />
  15. <asp:Button ID="btnSyncWithConfigureAwait" runat="server" Text="SyncWithConfigureAwait" OnClick="btnSyncWithConfigureAwait_Click" />
  16. <br />
  17. <asp:Button ID="btnAsyncWithConfigureAwait" runat="server" Text="AsyncWithConfigureAwait" OnClick="btnAsyncWithConfigureAwait_Click" />
  18. </div>
  19. </form>
  20. </body>
  21. </html>
  22.  
ConfigureAwait.aspx.cs
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. using System.Web;
  6. using System.Web.UI;
  7. using System.Web.UI.WebControls;
  8.  
  9. namespace ConcurrencyWebForm
  10. {
  11. public partial class ConfigureAwait : System.Web.UI.Page
  12. {
  13. protected void Page_Load(object sender, EventArgs e)
  14. {
  15.  
  16. }
  17.  
  18. //此例會造成Deadlock
  19. //ps.以同步的方式執行非同步的function是非常不建議的
  20. protected void btnSyncWithoutConfigureAwait_Click(object sender, EventArgs e)
  21. {
  22. Task tVal = DoSomethingAsync();
  23. string abc = "";
  24. string cde = "";
  25. Page.ClientScript.RegisterStartupScript(this.GetType(), "", "alert('" + tVal.Result.ToString() + "');", true);
  26. }
  27. private async Task DoSomethingAsync()
  28. {
  29. int val = 13;
  30. // Asynchronously wait 3 second.
  31. //只是為了讓此library function為非同步執行才用Task.Delay,實際尚無特別意義
  32. await Task.Delay(TimeSpan.FromSeconds(3));
  33. val *= 2;
  34. // Asynchronously wait 3 second.
  35. await Task.Delay(TimeSpan.FromSeconds(3));
  36. return val;
  37. }
  38. protected void btnSyncWithConfigureAwait_Click(object sender, EventArgs e)
  39. {
  40. Task tVal = DoSomethingAsyncWithConfigureAwait();
  41. string abc = "";
  42. string cde = "";
  43. Page.ClientScript.RegisterStartupScript(this.GetType(), "", "alert('" + tVal.Result.ToString() + "');", true);
  44. }
  45. //.ConfigureAwait(false)另開了context以儲存library function的執行狀態
  46. private async Task DoSomethingAsyncWithConfigureAwait()
  47. {
  48. int val = 13;
  49. // Asynchronously wait 3 second.
  50. //增加了.ConfigureAwait(false)另開了context
  51. await Task.Delay(TimeSpan.FromSeconds(3)).ConfigureAwait(false);
  52. val *= 2;
  53. // Asynchronously wait 3 second.
  54. //增加了.ConfigureAwait(false)另開了context
  55. await Task.Delay(TimeSpan.FromSeconds(3)).ConfigureAwait(false);
  56. return val;
  57. }
  58. protected async void btnAsyncWithConfigureAwait_Click(object sender, EventArgs e)
  59. {
  60. int intVal = await DoSomethingAsyncWithConfigureAwait();
  61. string abc = "";
  62. string cde = "";
  63. Page.ClientScript.RegisterStartupScript(this.GetType(), "", "alert('" + intVal.ToString() + "');", true);
  64. }
  65. }
  66. }

沒有留言:

張貼留言