书栈网 · BookStack 本次搜索耗时 0.026 秒,为您找到 104 个相关结果.
  • 语法高亮教程

    4382 2018-06-23 《Hangfire中文文档》
    语法高亮教程¶ |简单示例|https://github.com/odinserj/Hangfire.Highlighter |完整示例|http://highlighter.hangfire.io , sources 概述¶ 假设您正在构建一个代码仓库的Web应用程序,如 GitHub Gists , 并希望实现语法高亮显示的功能。为了提高用户...
  • 配置并行数

    4334 2018-06-23 《Hangfire中文文档》
    配置并行数¶ 配置并行数¶ 后台任务由在Hangfire Server的子系统中运行的专用工作线程池进行处理。当您启动后台任务服务器时,它将初始化线程池并启动固定的worker。您可以通过将值传递给 UseHangfireServer 方法来指定并行数。 var options = new BackgroundJobServerOpti...
  • 在后台中调用方法

    7956 2018-06-23 《Hangfire中文文档》
    在后台中调用方法¶ Fire-and-forget 的调用方法极其简单。正如您从 快速开始 一节中了解到,您只需要传递一个具有相应方法和参数的lambda表达式: BackgroundJob . Enqueue (() => Console . WriteLine ( "Hello, world!" )); Enqueue 方法不...
  • Placing processing into another process

    Placing processing into another process¶ You may decide to move the processing to the different process from the main application. For example, your web application will only enq...
  • Running multiple server instances

    Running multiple server instances¶ Obsolete since 1.5 You aren’t required to have additional configuration to support multiple background processing servers in the same process ...
  • ABP后台服务

    1365 2018-02-15 《ABP翻译文档》
    ABP后台服务 链接 后台作业和后台工人 集成Hangfire 集成Quartz
  • 使用ioc容器

    5476 2018-06-23 《Hangfire中文文档》
    使用ioc容器¶ 正如我在 上一节 中所述,在调用实例方法之前,Hangfire 使用 JobActivator 来实例化目标类型。您可以通过重写类型的实例化来执行更复杂的逻辑。例如,您可以在项目中使用IoC容器: public class ContainerJobActivator : JobActivator { p...
  • 运行多个服务实例

    4209 2018-06-08 《hangfire 中文文档》
    运行多个服务实例¶ 自 1.5 后就过时了 在 Hangfire 1.5 之后,您不需要额外的配置来支持多个服务实例处理同一个后台任务,可以跳过本文了。现在使用 GUID 生成服务器标识符,因此所有实例名称都是唯一的。 可以同时在一个程序、机器或多台机器上运行多个服务器实例。每个服务实例使用分布式锁来执行协调逻辑。 在上述情况中,每个Hangfire...
  • Using IoC containers

    Using IoC containers¶ As I said in the previous section Hangfire uses the JobActivator class to instantiate the target types before invoking instance methods. You can override ...
  • Performing recurrent tasks

    Performing recurrent tasks¶ Recurring job registration is just as simple as background job registration – you only need to write a single line of code: RecurringJob . AddOrUpdat...