Questions tagged [quartz.net-3.0]

a pure .NET library written in c# and is a port of an open source Java job scheduling framework.

This is the third alpha of v3. With updates to API's and addition of CancellationToken support as well as IReadOnlyCollections more concisely.

24 questions
0
votes
1 answer

Long running service for scheduled jobs in .NET 6

I will be using .NET 6 for a project that will execute scheduled jobs. I don't want to run the service as a Windows or Linux service. No while loop or Task.Delay hack should be used. I'm planning to use Quartz.NET for scheduling but not the concern…
0
votes
1 answer

Quartz.net Could not Initialize DataSource for SqlServer-20

I'm new to running Quartz v3.5.0 on .NET framework 4.8 as a Windows service in an Autofac IoC. I had it working just fine with a RAMJobStore. But now that I created a QuartzData database (as prescribed) in MS Sql Server on my localhost, I seem to be…
0
votes
1 answer

Quartz Scheduler not working properly in .net 6

I am trying to add a Scheduled Task using Quartz but the task is not getting triggered. I have gone through many blogs but I don't see any visible mistake in my code. Can any one please help me out why Task is not getting triggered. I am trying…
Phaneendra
  • 103
  • 9
0
votes
1 answer

Quartz.net Manually trigger job from Web API

I realize this has sort of been asked before but I want to get a clear confirmation. I have a Windows Service running the Quartz.Net Scheduler. Jobs and Triggers have been created. We will have an angular web client that will at times, need to fire…
Brent
  • 175
  • 1
  • 12
0
votes
1 answer

How to handle Quartz.net job execution events?

I have created a generic job schedule manager class. I am using Quartz.net 3.0.7 in .net core app. public class ScheduleManagerManager : IScheduleManager where TJob : IJob { private readonly string _cronExpression; private readonly…
barteloma
  • 6,403
  • 14
  • 79
  • 173
0
votes
1 answer

Qrartz.net DailyTimeIntervalScheduleBuilder - How to identity first and last execution of the trigger in a day

Trying to Identity the first and last execution of a trigger in a day when quartz.net fire Execute(IJobExecutionContext context). Is there any way to to find this in quartz.net Execute(IJobExecutionContext context) method?
0
votes
1 answer

Quartz.net - should I manually delete a job scheduled for one-time execution?

I'm using Quartz.NET 3 as a job scheduler in my application Sometimes, I need to schedule a job for a "one time" immediate execution. At the moment I'm doing it like this: //Create job var uid = Guid.NewGuid().ToString(); IJobDetail jobDetail =…
Master_T
  • 7,232
  • 11
  • 72
  • 144
0
votes
1 answer

Quazrt.net 3.0 + net.core 2.0 : trigger not fire

I'm trying to create trigger and start job using quartz.net 3.0 in my net core app. Here is a code : mycontroller.cs public async Task CreateHomeWorkReminder([FromBody] CreateHomeWorkReminderRequest request) { if…
Galina Melnik
  • 1,947
  • 3
  • 14
  • 19
-1
votes
1 answer

Quartz.net: type of GetDefaultScheduler()

type of StdSchedulerFactory.GetDefaultScheduler() is task not IScheduler,so I got following error. how can I fix this? image
Leo
  • 1
  • 1
1
2