quartznet / quartznet

Quartz Enterprise Scheduler .NET
http://www.quartz-scheduler.net/
Apache License 2.0
6.51k stars 1.69k forks source link

API not matching documentation #49

Closed snebjorn closed 10 years ago

snebjorn commented 12 years ago

Hi, I'm new to Quartz. It came highly recommend from around the web so I thought I'd give it a go.

But as a newcomer to this API I find it hard to use the fine tutorials on the main site (http://quartznet.sourceforge.net/tutorial/) because they don't work.

I'm a bit puzzled as to why the refactor of JobDetail to JobDetailImpl was done. I wasn't in the slightest in doubt that JobDetail was the concrete implementation of IJobDetail. As goes for all the others.

Also there seem to be missing functions in the TriggerUtils class. I only have:

But the tutorial uses stuff like: Trigger trigger = TriggerUtils.MakeHourlyTrigger();

To make things worse Trigger doesn't even exists nor does TriggerImpl.

Please make this user friendly, again - it would seem :(

dhm116 commented 12 years ago

I second this request :+1:

chrisfraser commented 11 years ago

I third it. If you need a tutorial however, look at the examples in the Quartz.Examples.2010 project included with the source.

mika76 commented 11 years ago

Both the following method are missing too: TriggerUtils.MakeHourlyTrigger() TriggerUtils.GetEvenHourDate()

Not very professional if you ask me...

amazing-andrew commented 11 years ago

the documentation is a lil out of date, the main change is the way jobs are scheduled. You can check out this here or here for the new api.

lahma commented 10 years ago

I'm pleased to announce that Quartz.NET's web site has been successfully migrated to GitHub Pages. It should be now easier for community contribute fixes and enhancements.

The tutorial is (finally) updated to include 2.x changes:

http://www.quartz-scheduler.net/documentation/quartz-2.x/tutorial/index.html

Site is written in Markdown and can be updated with pull requests via GitHub:

https://github.com/quartznet/quartznet/tree/gh-pages

I've created redirects from old site quartznet.sourceforge.net and hopefully there should not be any dead links. Please give feedback on any issues you find!

I'm still in the process of updating documentation. Next step will be converting Java Quartz's cookbook and configuration reference.

kjellski commented 10 years ago

Very good Job! Thanks a lot!