quartz.net Questions
7
Solved
How can I configure Quartz in .net core to use dependency injection? I using standard .net core Dependency mechanism. In constructor of class that implements IJob, I need inject some dependencies.
...
Leyden asked 10/2, 2017 at 11:2
5
Solved
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 se...
Colburn asked 19/9, 2012 at 6:18
5
Solved
I am a beginner in Quartz.Net.
How can I add multiple jobs in a scheduler?
For the sake of learning I am using Console Application.
Mikol asked 3/2, 2014 at 12:47
4
Solved
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_ti...
Breathing asked 19/11, 2010 at 14:2
6
Solved
I have a value that I use in all the application; I set this in application_start
void Application_Start(object sender, EventArgs e)
{
Dictionary<int, IList<string>> Panels = new Di...
Allisonallissa asked 22/10, 2013 at 5:31
2
Solved
How I can get all the active jobs scheduled in the Quartz.NET scheduler? I tried the GetCurrentlyExecutingJobs() but it is returning always 0.
Arber asked 11/7, 2011 at 10:31
2
I am using Serilog in my .NETCore servers with several sinks such as console, file and graylog (GELF) for my cloud deployments.
As soon as I set the log-level to DEBUG I get messages from the quar...
Geraldgeralda asked 28/11, 2018 at 8:34
2
Solved
I'm trying to use Quartz sheduker in my asp core 2.0 project.
I downloaded Quartz 3.0.4 using nuget and after that i added services.AddQuartz(new QuartezOptions {});
to ConfigureService function in...
Peninsula asked 8/3, 2018 at 23:55
4
Solved
I am using Quartz and using sample code and get the error:
CS0738 'EmailJob' does not implement interface member
IJob.Execute(IJobExecutionContext). EmailJob.Execute(IJobExecutionContext) cann...
Multure asked 30/1, 2017 at 19:46
1
Solved
I've built a sample .NET 5 Web API application in VS2019, I had the default template (with WeatherForecastController).
I've added Quartz.net (version 3.3.3) to project and in Startup class I've add...
Shah asked 19/11, 2021 at 13:35
1
Solved
I have a running quartz job and terminating my BackgroundService, for some reason despite calling scheduler.Shutdown(true) the job remains running.
Even when looping through and interrupting jobs, ...
Struck asked 27/6, 2021 at 17:12
3
Solved
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 T...
Excruciate asked 10/10, 2014 at 9:37
1
Solved
I am trying to execute a Quartz scheduler job in .NET with a non-empty constructor and I try to use the default Dependency Injection of .NET to supply the dependencies. This is my job class which n...
Apace asked 19/3, 2021 at 15:17
1
I'm working on an Asp.Net Core 3.1 application in which I need to schedule different type of jobs. We're using Scoped jobs in order to work with Scoped services (like the dbcontext). As of recent, ...
Brigadier asked 13/3, 2021 at 22:52
6
Solved
When using Quartz.net to schedule jobs, I occasionally receive an exception when instantiating a job. This, in turn causes Quartz to set the trigger for the job to an error state. When this occurs,...
Organo asked 28/8, 2015 at 14:35
2
Solved
I am trying to create some Quartz.Net jobs following my own answer from this question. However, if the job is fairly complex and required "scoped" (services.AddScoped<.., ...>) services, the ...
Pinprick asked 14/3, 2019 at 18:56
6
Solved
I am using Quartz.NET for scheduling some custom tasks in our application. Everything works fine except that it logs about twenty debug entries in one second.
I don't know how to turn off the debu...
Vagal asked 18/5, 2009 at 11:15
3
Solved
Currently I am writing a service using Quartz.NET to schedule the running of it.
I was wondering if anyone has any experience of using constructor injection with Quartz.NET and Simple Injector.
B...
Safire asked 28/1, 2013 at 12:35
5
I have the following class
public class MyEmailService
{
public async Task<bool> SendAdminEmails()
{
...
}
public async Task<bool> SendUserEmails()
{
...
}
}
public interf...
Astronomer asked 24/1, 2017 at 6:38
3
Solved
I have a Quartz job which is scheduled with a collection of triggers and it has 3 to 5 minutes of execution time. But at any moment in the future(it may be a week later or a couple of minutes later...
Arbitrary asked 2/5, 2013 at 9:19
4
Solved
In my project I have to use Quartz but I don't know what i do wrong.
JobFactory:
public class IoCJobFactory : IJobFactory
{
private readonly IServiceProvider _factory;
public IoCJobFactory(ISe...
Controversial asked 13/2, 2017 at 8:25
4
Solved
I've just added quartz.net dll to my bin and started my example. How do I call a C# method using quartz.net based on time?
using System;
using System.Collections.Generic;
using System.Linq;
using...
Bianco asked 14/7, 2010 at 12:20
1
I am receiving the following error while I try to call a controller on my project which uses oWin and Quartz.Net 3.0.7 with Autofac .
{
"Message": "An error has occurred.",
"ExceptionMessage": "An...
Comfort asked 9/11, 2019 at 7:12
5
I get an error in this line saying:
Cannot implicitly convert type 'System.Threading.Tasks.Task' to 'Quartz.IScheduler'. An explicit conversion exists (are you missing a cast?)
How to solve i...
Snooze asked 5/11, 2016 at 11:1
1
Solved
I have a windows service which uses Quartz for scheduling the tasks. And I am trying to achieve the Dependency Injection as by default the Quartz doesn't support that with default Job Factory. So I...
Mchale asked 1/8, 2019 at 14:11
1 Next >
© 2022 - 2024 — McMap. All rights reserved.