Quartz.Plugins 3.13.1

Prefix Reserved
dotnet add package Quartz.Plugins --version 3.13.1                
NuGet\Install-Package Quartz.Plugins -Version 3.13.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.13.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Quartz.Plugins --version 3.13.1                
#r "nuget: Quartz.Plugins, 3.13.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.13.1

// Install Quartz.Plugins as a Cake Tool
#tool nuget:?package=Quartz.Plugins&version=3.13.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 (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

This package is not used by any popular GitHub repositories.

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