Quartz.Plugins 3.8.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Quartz.Plugins --version 3.8.1
NuGet\Install-Package Quartz.Plugins -Version 3.8.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Quartz.Plugins" Version="3.8.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Quartz.Plugins --version 3.8.1
#r "nuget: Quartz.Plugins, 3.8.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Quartz.Plugins as a Cake Addin
#addin nuget:?package=Quartz.Plugins&version=3.8.1

// Install Quartz.Plugins as a Cake Tool
#tool nuget:?package=Quartz.Plugins&version=3.8.1

Quartz.Plugins provides some useful ready-mady plugins for your convenience.

Installation

You need to add NuGet package reference to your project which uses Quartz.

Install-Package Quartz.Plugins

Configuration

Plugins are configured by using either DI configuration extensions or adding required configuration keys.

Configuration key in in format quartz.plgin.{name-to-refer-with}.{property}.

See configuration reference on how to configure each plugin

Features

LoggingJobHistoryPlugin

Logs a history of all job executions (and execution vetoes) and writes the entries to configured logging infrastructure.

ShutdownHookPlugin

This plugin catches the event of the VM terminating (such as upon a CRTL-C) and tells the scheduler to Shutdown.

XMLSchedulingDataProcessorPlugin

This plugin loads XML file(s) to add jobs and schedule them with triggers as the scheduler is initialized, and can optionally periodically scan thefile for changes.

::: warning The periodically scanning of files for changes is not currently supported in a clustered environment. :::

JobInterruptMonitorPlugin

This plugin catches the event of job running for a long time (more than the configured max time) and tells the scheduler to "try" interrupting it if enabled.

::: tip Quartz 3.3 or later required. :::

Each job configuration needs to have JobInterruptMonitorPlugin.JobDataMapKeyAutoInterruptable key's value set to true in order for plugin to monitor the execution timeout. Jobs can also define custom timeout value instead of global default by using key JobInterruptMonitorPlugin.JobDataMapKeyMaxRunTime.

var job = JobBuilder.Create<SlowJob>()
    .WithIdentity("slowJob")
    .UsingJobData(JobInterruptMonitorPlugin.JobDataMapKeyAutoInterruptable, true)
    // allow only five seconds for this job, overriding default configuration
    .UsingJobData(JobInterruptMonitorPlugin.JobDataMapKeyMaxRunTime, TimeSpan.FromSeconds(5).TotalMilliseconds.ToString(CultureInfo.InvariantCulture))
    .Build();
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 is compatible.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (20)

Showing the top 5 NuGet packages that depend on Quartz.Plugins:

Package Downloads
Quartz.Plugins.TimeZoneConverter The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Quartz.NET TimeZoneConverter integration https://github.com/mj1856/TimeZoneConverter; Quartz Scheduling Framework for .NET

Castle.Facilities.Quartz The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Castle Windsor Quartz facility lets you easily add windsor to Quartz apps.

Quartz.HostedService

Use .Net Core Generic Service and Quartz to Implement Background Schedule Tasks.

Grebok.AspNet

Grebok Framework

QCommon.Quartz

Package Description

GitHub repositories (4)

Showing the top 4 popular GitHub repositories that depend on Quartz.Plugins:

Repository Stars
guoming/Hummingbird
分布式锁,分布式ID,分布式消息队列、配置中心、注册中心、服务注册发现、超时、重试、熔断、负载均衡
withsalt/BilibiliLiveTools
Bilibili直播工具。自动登录并获取推流地址,可以用于电脑、树莓派等设备无人值守直播。
microsoft/Recurring-Integrations-Scheduler
Recurring Integrations Scheduler (RIS) is a solution that can be used in file-based integration scenarios for Dynamics 365 Finance and Dynamics 365 Supply Chain Management.
oncemi/OnceMi.Framework
基于.NET 7和Vue 2开发的企业级前后端分离权限管理开发框架(后台管理系统),具有组织管理、角色管理、用户管理、菜单管理、授权管理、计划任务、文件管理等功能。支持国内外多种流行数据库,支持IdentityServer4认证中心。
Version Downloads Last updated
3.8.1 8,513 2/17/2024
3.8.0 138,361 11/18/2023
3.7.0 169,579 8/4/2023
3.6.3 149,075 6/25/2023
3.6.2 466,024 2/25/2023
3.6.1 377 2/25/2023
3.6.0 309,311 1/29/2023
3.5.0 416,376 9/18/2022
3.4.0 757,967 3/27/2022
3.3.3 620,452 8/1/2021
3.3.2 209,579 4/9/2021
3.3.1 1,575 4/8/2021
3.3.0 1,082 4/7/2021
3.2.4 168,949 1/19/2021
3.2.3 218,552 10/31/2020
3.2.2 20,495 10/19/2020
3.2.1 777 10/18/2020
3.2.0 20,987 10/2/2020
3.1.0 210,729 7/24/2020
3.0.7 504,266 10/7/2018
3.0.6 125,420 7/6/2018
3.0.5 42,609 5/27/2018
3.0.4 14,074 3/4/2018
3.0.3 1,477 2/24/2018
3.0.2 33,913 1/25/2018
3.0.1 1,941 1/21/2018
3.0.0 11,499 12/30/2017
3.0.0-beta1 1,327 10/8/2017