Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any open-source admin UI for quartz.NET

Tags:

quartz.net

Is there available any open source admin interface to add/edit/delete jobs & triggers in QUARTZ.NET scheduler?

like image 917
VJAI Avatar asked Jun 30 '11 09:06

VJAI


People also ask

Is Quartz net open source?

Quartz.Net is a . Net port of the popular Java job scheduling framework. It's an open source job scheduling system that can be used from smallest apps to large-scale enterprise systems.

How does Quartz trigger work?

Quartz scheduler allows an enterprise to schedule a job at a specified date and time. It allows us to perform the operations to schedule or unschedule the jobs. It provides operations to start or stop or pause the scheduler. It also provides reminder services.

What is Quartz in .NET core?

Quartz.NET is a full-featured, open source job scheduling system that can be used from smallest apps to large scale enterprise systems. It's an old staple of many ASP.NET developers, used as a way of running background tasks on a timer, in a reliable, clustered, way.


2 Answers

I recently published new alternative web UI for Quartz.NET. You can manage jobs, triggers, calendars and most of the API which IScheduler provide. It is pluggable into existing OWIN and ASP.NET Core application or it creates embedded web server on it own. You can put strongly typed values to JobDataMap or edit existing JobDataMap of job or trigger.

https://github.com/jlucansky/Quartzmin

like image 43
sarge Avatar answered Sep 21 '22 02:09

sarge


Check out this blog. He describes a few that worked for him and few others he investigated.

Once you know how to use the Quartz API (Example 12 - Client really helped me), it's not too difficult to extract whatever information you want.

like image 195
Brad Bruce Avatar answered Sep 21 '22 02:09

Brad Bruce