Autofac.Extras.Quartz 10.0.0-alpha0007

Autofac.Extras.Quartz

Autofac integration package for Quartz.Net.

Autofac.Extras.Quartz creates nested litefime scope for each Quartz Job. Nested scope is disposed after job execution has been completed.

This allows to have single instance per job execution as well as deterministic disposal of resources.

Install package via Nuget: install-package Autofac.Extras.Quartz

Build status

Stable Pre-release
Build Master branch Development branch
NuGet NuGet NuGet
CodeCov codecov codecov

Usage example

Autofac configuration for Quartz includes two steps:

  1. Scheduler registration
  2. Job registration

Scheduler registration

QuartzAutofacFactoryModule registers custom ISchedulerFactory and default instance of IScheduler in Autofac container. Both factory and schedulere are registered as singletones. Note: Is is important to resolve IScheduler from container, rather than using default one to get jobs resolved by Autofac.

Optionally custom Quartz configuration can be passed using ConfigurationProvider property. Provider is callback which returns settings using NameValueCollection.

Job scope configuration

Starting with version 7 QuartzAutofacFactoryModule provides a way to customize lifetime scope configuration for job. This can be done via JobScopeConfigurator parameter.

cb.Register(_ => new ScopedDependency("global"))
    .AsImplementedInterfaces()
    .SingleInstance();

cb.RegisterModule(new QuartzAutofacFactoryModule {
    JobScopeConfigurator = (builder, jobScopeTag) => {
        // override dependency for job scope
        builder.Register(_ => new ScopedDependency("job-local "+ DateTime.UtcNow.ToLongTimeString()))
            .AsImplementedInterfaces()
            .InstancePerMatchingLifetimeScope(jobScopeTag);

    }
});

See src/Samples/Shared/Bootstrap.cs for details.

Job registration

QuartzAutofacJobsModule scans given assemblies and registers all non-abstract implementors of IJob interface as transient instances.

internal static ContainerBuilder ConfigureContainer(ContainerBuilder cb)
{
	// 1) Register IScheduler
	cb.RegisterModule(new QuartzAutofacFactoryModule()); 
	// 2) Register jobs
	cb.RegisterModule(new QuartzAutofacJobsModule(typeof (CleanupExpiredAnnouncemetsJob).Assembly));
}

Starting Quartz

Make sure to start the scheduler after it was resolved from Autofac. E.g.

var scheduler = _container.Resolve<IScheduler>();
scheduler.Start();

Sample projects

TopShelf-based sample was removed since Topshelf.Quartz is not compatible with Quartz 3 as af now.

No packages depend on Autofac.Extras.Quartz.

.NET 6.0

.NET 7.0

.NET 8.0

.NET Standard 2.0

.NET Standard 2.1

Version Downloads Last updated
11.1.0-alpha0002 6 03/06/2026
11.0.0 6 03/06/2026
10.1.0-alpha0007 11 02/10/2026
10.0.0 14 12/13/2025
10.0.0-alpha0007 18 12/11/2025
10.0.0-alpha0006 9 12/20/2025
9.0.0 9 12/12/2025
8.2.0 8 12/13/2025
8.2.0-alpha0001 12 12/14/2025
8.1.0 9 12/16/2025
8.1.0-alpha0003 11 12/14/2025
8.1.0-alpha0002 11 12/20/2025
8.0.0 15 12/13/2025
7.4.0-alpha0007 11 12/14/2025
7.4.0-alpha0005 11 12/20/2025
7.4.0-alpha0002 16 12/14/2025
7.3.0 12 12/14/2025
7.3.0-alpha0009 13 12/15/2025
7.2.0 10 12/14/2025
7.2.0-alpha0006 13 12/20/2025
7.1.0 10 01/09/2026
7.1.0-alpha0011 12 12/15/2025
7.1.0-alpha0010 17 12/10/2025
7.1.0-alpha0009 11 12/15/2025
7.1.0-alpha0008 10 12/20/2025
7.1.0-alpha0006 9 12/12/2025
7.1.0-alpha0004 15 12/17/2025
7.1.0-alpha0003 10 12/20/2025
7.1.0-alpha0002 13 12/12/2025
7.1.0-alpha0001 9 12/19/2025
7.0.0 8 12/13/2025
7.0.0-beta0001 11 12/15/2025
7.0.0-alpha0024 16 12/13/2025
7.0.0-alpha0023 11 12/14/2025
6.3.0-alpha0001 11 12/14/2025
6.2.0 10 12/12/2025
6.2.0-beta0001 14 12/09/2025
6.2.0-alpha0008 9 12/16/2025
6.2.0-alpha0001 8 12/17/2025
6.1.0 12 12/14/2025
6.1.0-beta0001 14 12/10/2025
6.0.1 12 12/13/2025
6.0.1-beta0001 9 12/10/2025
6.0.0 11 12/15/2025
6.0.0-beta0001 12 12/10/2025
6.0.0-alpha0041 14 12/12/2025
6.0.0-alpha0039 10 12/20/2025
5.4.0 8 12/22/2025
5.4.0-beta0001 10 12/15/2025
5.4.0-alpha0007 12 12/13/2025
5.4.0-alpha0001 9 12/14/2025
5.3.0 12 12/12/2025
5.3.0-beta0001 15 12/13/2025
5.3.0-alpha0009 11 12/20/2025
5.3.0-alpha0008 10 12/20/2025
5.3.0-alpha0007 13 12/11/2025
5.3.0-alpha0001 10 12/15/2025
5.2.0 11 12/13/2025
5.2.0-beta0001 16 12/13/2025
5.2.0-alpha0023 10 12/20/2025
5.2.0-alpha0021 10 12/17/2025
5.1.0 9 12/14/2025
5.1.0-alpha0015 12 12/14/2025
5.1.0-alpha0014 10 12/15/2025
5.1.0-alpha0005 12 12/20/2025
5.0.0 10 12/12/2025
5.0.0-beta0001 18 12/15/2025
5.0.0-alpha0064 16 12/11/2025
4.7.0-alpha0013 17 12/11/2025
4.7.0-alpha0009 11 12/12/2025
4.7.0-alpha0007 16 12/14/2025
4.7.0-alpha0006 12 12/20/2025
4.7.0-alpha0005 14 12/11/2025
4.7.0-alpha0004 9 12/20/2025
4.6.0 15 12/15/2025
4.6.0-beta0001 15 12/11/2025
4.6.0-alpha0036 10 12/15/2025
4.6.0-alpha0034 10 12/14/2025
4.6.0-alpha0033 12 12/14/2025
4.6.0-alpha0028 13 12/14/2025
4.6.0-alpha0026 13 12/12/2025
4.6.0-alpha0024 12 12/13/2025
4.6.0-alpha0022 15 12/14/2025
4.6.0-alpha0018 14 12/15/2025
4.6.0-alpha0008 9 12/20/2025
4.6.0-alpha0005 10 12/20/2025
4.6.0-alpha0003 9 12/20/2025
4.6.0-alpha0001 13 12/15/2025
4.5.1 12 12/13/2025
4.5.1-beta0001 13 12/15/2025
4.5.0 9 12/13/2025
4.5.0-beta0001 11 12/20/2025
4.5.0-alpha0008 10 12/20/2025
4.5.0-alpha0007 12 12/12/2025
4.5.0-alpha0005 11 12/15/2025
4.5.0-alpha0003 15 12/10/2025
4.5.0-alpha0002 12 12/14/2025
4.5.0-alpha0001 9 12/15/2025
4.4.0 8 12/20/2025
4.4.0-beta0001 16 12/15/2025
4.4.0-alpha0014 9 12/20/2025
4.4.0-alpha0013 8 12/14/2025
4.4.0-alpha0012 10 12/20/2025
4.4.0-alpha0002 8 12/20/2025
4.4.0-alpha0001 8 12/15/2025
4.3.0 9 12/23/2025
4.3.0-beta0001 13 12/15/2025
4.3.0-alpha0008 16 12/15/2025
4.3.0-alpha0007 14 12/15/2025
4.3.0-alpha0006 13 12/12/2025
4.3.0-alpha0005 16 12/13/2025
4.2.0 13 12/22/2025
4.2.0-beta0001 10 12/13/2025
4.2.0-alpha0004 10 12/13/2025
4.2.0-alpha0003 10 12/14/2025
4.2.0-alpha0002 11 12/15/2025
4.2.0-alpha0001 12 12/15/2025
4.1.2 11 12/13/2025
4.1.1 10 12/12/2025
4.1.0-beta0004 16 12/15/2025
4.1.0-beta0001 12 12/13/2025
4.1.0-alpha0016 13 12/10/2025
4.0.0 11 12/10/2025
4.0.0-beta0007 16 12/13/2025
4.0.0-beta0006 12 12/11/2025
4.0.0-beta0001 8 12/15/2025
3.5.0 8 12/13/2025
3.5.0-unstable0012 11 12/15/2025
3.5.0-unstable0010 14 12/15/2025
3.5.0-unstable0004 11 12/20/2025
3.5.0-unstable0003 12 12/20/2025
3.5.0-unstable0002 8 12/20/2025
3.5.0-unstable0001 13 12/14/2025
3.5.0-beta0001 13 12/15/2025
3.4.0 8 12/24/2025
3.4.0-unstable0009 15 12/15/2025
3.4.0-unstable0008 11 12/15/2025
3.4.0-unstable0007 11 12/15/2025
3.4.0-unstable0006 13 12/20/2025
3.4.0-unstable0004 16 12/18/2025
3.4.0-unstable0001 12 12/14/2025
3.4.0-ci0000 9 12/20/2025
3.3.0 11 12/12/2025
3.3.0-unstable0001 8 12/20/2025
3.3.0-unstable0000 6 12/15/2025
3.2.0 7 12/13/2025
3.2.0-beta0001 12 12/15/2025
3.1.0 13 12/14/2025
3.1.0-unstable0022 12 12/15/2025
3.1.0-unstable0021 13 12/20/2025
3.0.0-unstable0020 9 12/15/2025
3.0.0-unstable0017 12 12/20/2025
3.0.0-unstable0013 14 12/20/2025
3.0.0-unstable0012 9 12/13/2025
3.0.0-unstable0011 14 12/09/2025
3.0.0-beta-1 8 12/20/2025
3.0.0-alpha0014 11 12/20/2025
2.2.0-unstable0012 9 12/20/2025
2.1.1 13 12/20/2025
2.1.0 11 12/10/2025
2.0.0.1 13 12/15/2025
1.7.0 11 12/11/2025
1.6.0 10 12/11/2025
1.5.1 12 12/10/2025
1.5.0 15 12/11/2025
1.4.0 9 12/13/2025
1.3.0 12 12/11/2025
1.2.0 11 12/11/2025
1.1.1 13 12/12/2025
1.1.0 10 12/11/2025
1.0.0 13 12/12/2025
0.11.0 9 12/12/2025
0.10.0 13 12/11/2025
0.9.0 13 12/12/2025