代码之家  ›  专栏  ›  技术社区  ›  Oscar

主中的异步方法立即返回

  •  -1
  • Oscar  · 技术社区  · 6 年前

    我在一个网络核心2.2应用程序中有以下主要功能,使用C级别7.3

        public static async Task Main(string[] args)
        {
            _logger.TraceMethodBegins(nameof(Main));
            AppDomain.CurrentDomain.UnhandledException += CurrentDomainOnUnhandledException;
            TaskScheduler.UnobservedTaskException += TaskSchedulerOnUnobservedTaskException;
            using (ServiceFactory.Instance)
            {
                try
                {
                    Parser.Default.ParseArguments<Options>(args)
                        .WithParsed(async o =>
                        {
                            IWtgValuesCalculator wtgValuesCalculator = ServiceFactory.Instance.Kernel.Get<IWtgValuesCalculator>();
                            await wtgValuesCalculator.Calculate(o.StartDate, o.EndDate, o.FacilityName);
                        })
                        .WithNotParsed(async o =>
                        {
    //Code enters over here
                            IWtgValuesCalculator wtgValuesCalculator = ServiceFactory.Instance.Kernel.Get<IWtgValuesCalculator>();
                            await wtgValuesCalculator.Calculate(null, null, null);
                        });
                }
                catch (Exception e)
                {
                    _logger.Fatal(e, e.Message);
                }
            }
    //And jump here immediately without awaiting
            _logger.TraceMethodEnds(nameof(Main));
        }
    

    方法将立即返回,而不等待 await wtgValuesCalculator.Calculate() 我已经验证了没有异常,如果我将其更改为使用所有同步方法,程序将按预期运行。同时,呼叫 wtgValuesCalculator.Calculate(o.StartDate, o.EndDate, o.FacilityName).GetAwaiter().GetResult(); 使其正确运行。一位同事告诉我,他在某个地方读到,主要的异步方法可能有问题,因为mscorlib没有完全加载,但我找不到任何有关它的信息。有人能解释一下吗? 亲切的问候。

    2 回复  |  直到 6 年前
        1
  •  1
  •   haimb    6 年前

    每当出现等待时,你的方法就被分成两部分:等待前和等待后(不是100%准确,但足够接近)。一旦等待的操作完成,将执行“第二”方法,“第一”部分在等待的操作返回等待的操作时返回。 要使整个方法调用链等待“第二”部分,需要在调用树上的每个可等待方法上都有一个等待。

        2
  •  0
  •   Markus Dresch    6 年前

    您将在传递给的异步方法中等待 WithParsed WithNotParsed . 你不会在你的任何地方等待 async Main 方法。

    分析参数,然后 await wtgValuesCalculator.Calculate 里面主要。

    换句话说:此时,您将两个异步方法发送到WithParsed/WithNotParsed,并在不等待的情况下继续。你的 await 仅在WithParsed/WithNotParsed委托的上下文中。