C#异步和等待流

时间:2016-02-25 23:20:50

标签: c# async-await

我正在尝试了解异步并等待流程。开始查看来自的代码 John Atten's blog关于Owin和Katana。在尝试查看执行步骤时,我在流程中找到了几个步骤(步骤9和16),我无法理解为什么执行将遍历。

代码:

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.Owin;
using Microsoft.Owin.Hosting;
using Owin;
namespace KatanaConsole
{
    //use an alias for OWIN APPFunc
    using AppFunc= Func<IDictionary<string,object>,Task>;
    class Program
    {
        static void Main(string[] args)
        {

            var uri = "http://localhost:8080";

            using ( WebApp.Start<StartUp>(uri))
            {
                Console.WriteLine("Web Server started on port 2323");
                 Console.WriteLine("Server Started; Press enter to Quit");
                Console.ReadLine();
            }
        }
    }

    public class StartUp
    {
        public void Configuration(IAppBuilder appBuilder)
        {
        var firstMiddleware= new Func<AppFunc,AppFunc>(FirstMiddleware);
        var secondMiddleware = new Func<AppFunc, AppFunc>(SecondMiddleware);

        appBuilder.Use(firstMiddleware);
        appBuilder.Use(secondMiddleware);

        }


        public AppFunc FirstMiddleware(AppFunc next)
        {

            AppFunc appFunc = async environment =>
            {
                IOwinContext context = new OwinContext(environment);
                await context.Response.WriteAsync("<h1> Middleware:1 ->  Hello from X1</h1>");
                await next.Invoke(environment);
            };
            return appFunc;
        }

        public AppFunc SecondMiddleware(AppFunc next)
        {

            AppFunc appFunc = async (IDictionary<string, object> environment) =>
            {
                IOwinContext context = new OwinContext(environment);
                await context.Response.WriteAsync("<h1> Middleware:2 ->  Hello from X2</h1>");
                await next.Invoke(environment);
            };
            return appFunc;
        }
    }


}

我尝试访问localhost时的代码流:8080

流量:

输入 - &gt;第一个中间件

  1. IOwinContext context = new OwinContext(environment);
  2. await context.Response.WriteAsync("<h1> Middleware:1 -> Hello from X1</h1>"); // Response Sent to browser
  3. await next.Invoke(environment);
  4. 进入 - &gt;第二个中间件

    1. IOwinContext context = new OwinContext(environment);

    2. await context.Response.WriteAsync("<h1> Middleware:2 -> Hello from X2</h1>");// Response Sent to browser

    3. await next.Invoke(environment);

    4. 进入(返回通话方式) - &gt;第一个中间件

      1. await next.Invoke(environment);

      2. 退出 - &gt; FirstMiddleWare

      3. 重新进入 - &gt;第一个中间件

        1. IOwinContext context = new OwinContext(environment);

        2. await context.Response.WriteAsync("<h1> Middleware:1 -> Hello from X1</h1>"); // No Response Sent to browser

        3. await next.Invoke(environment);

        4. 重新进入 - &gt;第二个中间件

          1. IOwinContext context = new OwinContext(environment);

          2. await context.Response.WriteAsync("<h1> Middleware:2 -> Hello from X2</h1>");// No Response Sent to browser

          3. await next.Invoke(environment);

          4. 重新进入(返回呼叫方法) - &gt;第一个中间件

            1. await next.Invoke(environment);

            2. 退出 - &gt; FirstMiddleWare

            3. 执行停止 我的问题是为什么它再次遍历第9步和第16步?

              并添加到它,即使遍历了步骤9和16,响应也不会改变。所以我猜它正在那里进行一些后期条件检查。

              **编辑 - 1 **

              添加了所有遍历的步骤以使其更清晰(添加了步骤9到16)

1 个答案:

答案 0 :(得分:1)

由于您从浏览器获取favicon的自动第二个请求,因此遍历了步骤9到16。如果您注意context.Request.Path,您会注意到第一轮中间件是“/”,第二轮是“/favicon.ico”。实际上,行为取决于您用于发出请求的浏览器。我已经使用最新版本的几个浏览器和Webkit浏览器(Chrome和Opera)以及IE测试我总是得到一个关于favicon的请求。使用FF我只是第一次得到它并且它被缓存。而使用Edge - 根本没有要求它。