Quartz.Plugins
3.13.0
Prefix Reserved
See the version list below for details.
dotnet add package Quartz.Plugins --version 3.13.0
NuGet\Install-Package Quartz.Plugins -Version 3.13.0
<PackageReference Include="Quartz.Plugins" Version="3.13.0" />
paket add Quartz.Plugins --version 3.13.0
#r "nuget: Quartz.Plugins, 3.13.0"
// Install Quartz.Plugins as a Cake Addin #addin nuget:?package=Quartz.Plugins&version=3.13.0 // Install Quartz.Plugins as a Cake Tool #tool nuget:?package=Quartz.Plugins&version=3.13.0
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 | Versions 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. |
-
.NETFramework 4.6.2
- Quartz.Jobs (>= 3.13.0)
-
.NETFramework 4.7.2
- Quartz.Jobs (>= 3.13.0)
-
.NETStandard 2.0
- Quartz.Jobs (>= 3.13.0)
NuGet packages (22)
Showing the top 5 NuGet packages that depend on Quartz.Plugins:
Package | Downloads |
---|---|
Castle.Facilities.Quartz
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 |
|
Hummingbird.Extensions.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(B站)无人值守直播工具。自动登录,自动获取直播推流地址,自动推流(使用ffmpeg),可以用于电脑、树莓派等设备无人值守直播。
|
|
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.13.1 | 5,018 | 11/2/2024 |
3.13.0 | 37,890 | 8/10/2024 |
3.12.0 | 12,845 | 8/3/2024 |
3.11.0 | 34,473 | 7/7/2024 |
3.10.0 | 15,804 | 6/26/2024 |
3.9.0 | 165,132 | 5/9/2024 |
3.8.1 | 349,838 | 2/17/2024 |
3.8.0 | 386,253 | 11/18/2023 |
3.7.0 | 357,380 | 8/4/2023 |
3.6.3 | 238,426 | 6/25/2023 |
3.6.2 | 707,919 | 2/25/2023 |
3.6.1 | 455 | 2/25/2023 |
3.6.0 | 398,472 | 1/29/2023 |
3.5.0 | 485,031 | 9/18/2022 |
3.4.0 | 884,324 | 3/27/2022 |
3.3.3 | 728,167 | 8/1/2021 |
3.3.2 | 239,751 | 4/9/2021 |
3.3.1 | 2,048 | 4/8/2021 |
3.3.0 | 1,570 | 4/7/2021 |
3.2.4 | 184,004 | 1/19/2021 |
3.2.3 | 258,752 | 10/31/2020 |
3.2.2 | 21,540 | 10/19/2020 |
3.2.1 | 822 | 10/18/2020 |
3.2.0 | 23,171 | 10/2/2020 |
3.1.0 | 243,856 | 7/24/2020 |
3.0.7 | 553,826 | 10/7/2018 |
3.0.6 | 165,301 | 7/6/2018 |
3.0.5 | 68,266 | 5/27/2018 |
3.0.4 | 16,294 | 3/4/2018 |
3.0.3 | 1,529 | 2/24/2018 |
3.0.2 | 44,656 | 1/25/2018 |
3.0.1 | 2,029 | 1/21/2018 |
3.0.0 | 15,170 | 12/30/2017 |
3.0.0-beta1 | 1,377 | 10/8/2017 |