Questions tagged [quartz.net]

Quartz.NET is an open-source job scheduling library for .NET. A job scheduler is a system that is responsible for executing (or notifying) other software components when a predetermined (scheduled) time arrives. NOTE: this tag is for questions about the .NET version; for Java questions please use [quartz-scheduler] instead.

Quartz.NET is an open-source job scheduling service for .NET.

Quartz.Net can be used to create schedules for jobs at any scale with support for things like transactions and clustering. Quartz.NET is a port of the Java library, Quartz.

1484 questions
22
votes
5 answers

Quartz Scheduler: How to pass custom objects as JobParameter?

I am planning to write a ASP.NET page to trigger the job on demand. Currently, I am using SimpleTrigger class to trigger the job but none of the __Trigger class supports object type as value in JobParameters and it has come to my knowledge that WCF…
Thurein
  • 2,536
  • 7
  • 34
  • 49
22
votes
5 answers

Any open-source admin UI for quartz.NET

Is there available any open source admin interface to add/edit/delete jobs & triggers in QUARTZ.NET scheduler?
VJAI
  • 32,167
  • 23
  • 102
  • 164
22
votes
4 answers

Get all jobs in Quartz.NET 2.0

I've setup my AdoJobStore on the server and all my jobs are running perfectly. Now I am writing a remote client to manage all my jobs. Scheduling new jobs is straightforward enough, but I can't seem to retrieve a list of existing jobs in version…
André Haupt
  • 3,294
  • 5
  • 32
  • 57
19
votes
3 answers

How to convert a UTC DateTimeOffset to a DateTime that uses the systems timezone

Quartz.net offers a method to get the next time of the next trigger event: http://quartznet.sourceforge.net/apidoc/1.0/html/html/cc03bb79-c0c4-6d84-3d05-a17f59727c98.htm The docs claim that this Trigger.GetNextFireTimeUtc() method return a DateTime?…
Dan
  • 45,079
  • 17
  • 88
  • 157
18
votes
1 answer

Multiple triggers of same Job Quartz.NET

I have the following code: IScheduler scheduler = StdSchedulerFactory.GetDefaultScheduler(); scheduler.Start(); IJobDetail job = JobBuilder.Create().StoreDurably().WithIdentity("J_Email", "J_Mailing").Build(); …
Waqar Ahmed
  • 1,414
  • 2
  • 15
  • 35
18
votes
1 answer

Quartz.Net Trigger Scheduled Job On Demand

I have some Quartz.Net jobs which are running on a Schedule scheduler.ScheduleJob( new JobDetailImpl("MarkAsSolutionReminderJob", typeof(MarkAsSolutionReminderJob)), new CalendarIntervalTriggerImpl("MarkAsSolutionReminderJobTrigger",…
YodasMyDad
  • 9,248
  • 24
  • 76
  • 121
17
votes
3 answers

Quartz .Net - Meaning of BigInt DateTime

we've used sql server as our persisted data store for Quartz.net. I'd like to write some queries looking @ the Time values. Specifically - Qrtz_Fired_Triggers.Fired_Time, Qrtz_Triggers.Next_fire_time, Prev_fire_time. For the life of me, I can't…
Jeff Maass
  • 3,632
  • 3
  • 26
  • 30
17
votes
2 answers

Pros and Cons of running Quartz.NET embedded or as a windows service

I want to add quartz scheduling to an ASP.NET application. It will be used to send queued up emails. What are the pros and cons of running quartz.net as windows service vs embedded. My main concern is how Quartz.NET in embedded mode handles variable…
Anthony
  • 1,685
  • 4
  • 22
  • 29
17
votes
4 answers

ASP.NET MVC: How to create a usable UrlHelper instance?

I am using quartz.net to schedule regular events within asp.net mvc application. The scheduled job should call a service layer script that requires a UrlHelper instance (for creating Urls based on correct routes (via urlHelper.Action(..)) contained…
Marek
  • 10,307
  • 8
  • 70
  • 106
16
votes
1 answer

Getting Quartz.net to ignore misfires

I'm building a windows service which is performing a scheduled task which processes a queue of commands (from a legacy system) at a regular interval (once per min) using Quartz.net If the task takes longer than 1 min, which would be unusual but…
Absolutely N
  • 163
  • 1
  • 6
15
votes
2 answers

Autofac and Quartz.Net Integration

Does anyone have any experience integrating autofac and Quartz.Net? If so, where is it best to control lifetime management -- the IJobFactory, within the Execute of the IJob, or through event listeners? Right now, I'm using a custom autofac…
David Faivre
  • 2,302
  • 3
  • 23
  • 25
15
votes
2 answers

what's the purpose of ReturnJob in IJobFactory Interface for Quartz.Net

I'm using simpleInjector as IOC container bue I dont have a clear view of what's the responsabillity of ReturnJob, I'd like to know how can I proceed? this is the code I have done so far: public class SimpleInjectorJobFactory:IJobFactory { …
pedrommuller
  • 15,741
  • 10
  • 76
  • 126
15
votes
4 answers

IIS app pool recycle + quartz scheduling

I'm running a web app on IIS 7.5 and it needs to recycle occasionally (otherwise memory usage gets out of handing, something i'm looking into!). When it recycles, it is effectively not running until another request comes in, which quartz is not…
Paul Creasey
  • 28,321
  • 10
  • 54
  • 90
14
votes
2 answers

Simple, working example of Quartz.net

I am looking for a working simple example of Quartz.net for Console application (it can be any other application as long as it simple enough...). And while I am there, is there any wrapper that could help me avoid implementing IJobDetail, ITrigger,…
Tomer
  • 4,382
  • 5
  • 38
  • 48
14
votes
4 answers

Quartz.NET scheduler doesn't fire jobs/triggers once deployed

INTRODUCTION I'm using Quartz.Net on an ASP.Net framework 4, webforms web site. Basically, the user should have the hability to fire manually a batch script that asynchronously processes thousands of records stored on a database. The user can stop…
zed
  • 2,298
  • 4
  • 27
  • 44
1
2
3
98 99