zoukankan      html  css  js  c++  java
  • Orchard源码分析(5.3):EndRequest事件处理(DefaultOrchardHost.EndRequest方法)

    EndRequest事件处理的作用是处理完"处理引擎(ProcessingEngine)"中的任务(Task)。
     
            void IOrchardHost .EndRequest() {
                Logger.Debug( "EndRequest");
                EndRequest();
            }
      
             protected virtual void EndRequest() {
                // Synchronously process all pending tasks. It's safe to do this at this point
                // of the pipeline, as the request transaction has been closed, so creating a new
                // environment and transaction for these tasks will behave as expected.)
                while (_processingEngine.AreTasksPending()) {
                    _processingEngine.ExecuteNextTask();
                }
            }
     
    "操作引擎(Processing Engine)" 是一个任务容器,EndRequest中对添加到容器内的任务进行同步处理。关于"操作引擎"我们在适当的时候来分析。
     
    相关类型:
    Orchard.Environment.State.DefaultProcessingEngine: IProcessingEngine
    Orchard.Environment.State.ShellStateCoordinator : IShellStateManagerEventHandler, IShellDescriptorManagerEventHandler
    Orchard.Warmup.Services.WarmupScheduler : IWarmupScheduler, IWarmupEventHandler
    Orchard.Recipes.Services.RecipeScheduler : IRecipeScheduler, IRecipeSchedulerEventHandler
    Orchard.Indexing.Services.UpdateIndexScheduler : IUpdateIndexScheduler, IIndexNotifierHandler
  • 相关阅读:
    Gantt/BTS 生产计划电子看板甘特图
    C# DotNetty TCP对接 松下扣料机
    Vue 和 Zebra 打印机连接直接打印条码
    JavaFx 通信ITC数字广播 SAPI 使用NeoSpeech Liang包生成语音
    Docker RabbitMQ 镜像集群
    游戏匹配实现
    Metro 界面设计案例
    JavaFX 集成 Sqlite 和 Hibernate 开发爬虫应用
    Discuz论坛 自动加好友留言程序
    JavaFX Metro UI 和 开发库
  • 原文地址:https://www.cnblogs.com/lhxsoft/p/5322593.html
Copyright © 2011-2022 走看看