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
-1
votes
1 answer

Schedule a task of for 35th minute of every hour regardless of start time

I am very new to quartz scheduler and it's a little more all-encompassing than I need it to be. All I want to is to run a task on the 35 with minute of every hour regardless of when the application has been started. Apparently this can be done with…
americanslon
  • 4,048
  • 4
  • 32
  • 57
-1
votes
1 answer

Number of times trigger has executed

I'm trying to save the number of times a trigger has fired into a database table but I can't find anything in the quartz-scheduler.net regarding this. Is there any method I can invoke to achieve this? With simple trigger, there's a…
MO MI
  • 85
  • 6
-1
votes
1 answer

How to get quartz scheduler end event

I have a following code where i have started a quartz scheduler internal static IScheduler MyQuartzScheduler = null; private static async void StartProcessing() { try { …
Kamran Shahid
  • 3,954
  • 5
  • 48
  • 93
-1
votes
1 answer

Not able to configure adojob store Error: There is no metadata information for provider 'MySql-51', Could not Initialize DataSource: myDS

I have .net 4.5.2 application with quartz.net 3.0.4. I am trying to use adojobstore with mysql as database My configuration is
Kamran Shahid
  • 3,954
  • 5
  • 48
  • 93
-1
votes
1 answer

Quartz.NET 2.6 - Multiple Triggers Same Class Library

I really don't know if this is possible in Quartz.net but I was developing a class library to be registered in quartz.net as a crontrigger. This class library has two functions: It will read a table in a sql server db named DBx if the triggergroup…
Ray
  • 483
  • 4
  • 17
-1
votes
1 answer

Error JobRunShell.cs not found at HttpContextWrapper

I using Quartz .NET to execute code every minute and also refresh Index page after code execution, Quartz working fine to execute code but error while redirect to Index page (UI). Complete code is : Startup.cs public void Configuration(IAppBuilder…
Shri
  • 351
  • 3
  • 16
-1
votes
1 answer

Slide show is not working when i use Quartz.net to fire my routine at specific time

here i am giving a small my code snippet just to show what i am trying to achieve. private void frmMain_Load(object sender, EventArgs e) { // construct a scheduler factory ISchedulerFactory schedFact = new StdSchedulerFactory(); // get…
Mou
  • 15,673
  • 43
  • 156
  • 275
-1
votes
1 answer

C#:How to schedule multiple routine by Quartz.net at different time of the day once

i know how to fire my one routine every day at specific time of day. here is the code. IScheduler sched = null; //construct a scheduler factory ISchedulerFactory schedFact = new StdSchedulerFactory(); //get a scheduler sched =…
Mou
  • 15,673
  • 43
  • 156
  • 275
-1
votes
1 answer

Issue in Quartz.Net Cron Exrpession

I have used http://www.cronmaker.com/ to generate Cron Expression I need to run job every 45 minutes but seems there is something wrong with Cron expression or Quart.Net. Please look at following outputs and suggest me solutions. Cron format: 0…
-1
votes
1 answer

How do I Stop a service with Quartz?

I am new to MSMQ, Quartz, and services. I have a service that will send a notification email if an exception is thrown. I am trying to find a way to pause or stop the service once an email is sent so I don't receive the same exception email over and…
Beery
  • 1
  • 4
-1
votes
1 answer

Quartz.Net cron expression for immediate fire followed by 1 minute gap

I need help on a proper cron expression that will fire the job immediately after it's launched, then reoccurring every minutes thereafter. So far I have 0 0/1 * 1/1 * ? *? But that only fires at the minute mark (i.e. 3:31:00, 3:32:00). So if I…
Niner
  • 2,074
  • 6
  • 37
  • 47
-1
votes
1 answer

Quartz.net StartNow() ignored with DailyAtHourAndMinute()

DailyAtHourAndMinute() works , but why is StartNow() ignored? TriggerBuilder.Create().WithIdentity("engineTriggerII", engineGroup).StartNow().WithSchedule(CronScheduleBuilder.DailyAtHourAndMinute(0, 0)).Build(); version 2.3.3.0
Zakos
  • 1,492
  • 2
  • 22
  • 41
-1
votes
1 answer

Trigger for job with possible delay

How to construct quartz trigger that will wait for delayed job? For example: Trigger is set to run job every 5 minute but job can take more than 5 minute. I would like to finish delayed job a than start new interval.
m45k1c
  • 9
  • 4
-1
votes
1 answer

How to get the Winform program run time?

I am using quartz.net to close the machine in supermarket,when at 22:00.Trigger the shutdown event: public void Execute(IJobExecutionContext context) { logger.Info("shutdown....."); try …
Dolphin
  • 29,069
  • 61
  • 260
  • 539
-1
votes
1 answer

Error : does not exist in the namespace 'Common' when i installed Quartz.Net

I have a .Net 4.0 project, which has a class named Common to do somethings like getQueryString, GetKey, etc. When I installed the latest Quartz.Net for my Project, I started getting error messages that I'm missing namespace Common in my…
Nguyễn Huy
  • 227
  • 9
  • 19
1 2 3
98
99