Trigger that runs every hour forever

4,300 views
Skip to first unread message

dpra

unread,
Jul 14, 2013, 7:30:28 AM7/14/13
to quar...@googlegroups.com
Hi there,

I need a trigger that fires every hour forever, which I'm going to use in a Windows Service. From http://quartznet.sourceforge.net/migration_guide.html
I got the following

ITrigger trigger = TriggerBuilder.Create() .WithIdentity("trigger1", "group1") .StartAt(DateBuilder.FutureDate(1, IntervalUnit.HOURS)) .WithSimpleSchedule(x => x.RepeatHourlyForever()) .ModifiedByCalendar("holidays") .Build();


What is 'x' here? It doesn't resolve. I'm not a c# pro and I hadn't come across a declaration using '=>'
Is there a way to declare the trigger without using 'x'
and where is the documentation for 2.0 located apart form http://quartznet.sourceforge.net/apidoc/2.0/html/webframe.html
as I couldn't find 'WithSimpleSchedule' there.

Thank in advance!

John Kølle

unread,
Jul 14, 2013, 4:39:39 PM7/14/13
to quar...@googlegroups.com
Hi

Have you tried with a cron job?

I'm quite new to this but i think something like this would do it:

ICronTrigger trigger = (ICronTrigger)TriggerBuilder.Create()
                                                .WithIdentity("trigger1", "group1")
                                                .WithCronSchedule("* * 0/1 * * ?")
                                                .Build();

-
John

dpra

unread,
Jul 15, 2013, 2:42:25 AM7/15/13
to quar...@googlegroups.com
Thanks John, what interval is WithCronSchedule("* * 0/1 * * ?") scheduling the job?

I ran the program and it is running almost every second. I need it to run once an hour. Is there is a place where I can get documentation for the API?

Thanks!

Darshan Udayashankar

unread,
Jul 15, 2013, 2:56:13 AM7/15/13
to quar...@googlegroups.com
Hi,

    The following link explains CRON trigger "http://quartz-scheduler.org/documentation/quartz-2.x/tutorials/tutorial-lesson-06" and following link helps us to build cron trigger "http://www.cronmaker.com/"

Regards
Darshan
--
You received this message because you are subscribed to the Google Groups "Quartz.NET" group.
To unsubscribe from this group and stop receiving emails from it, send an email to quartznet+...@googlegroups.com.
To post to this group, send email to quar...@googlegroups.com.
Visit this group at http://groups.google.com/group/quartznet.
For more options, visit https://groups.google.com/groups/opt_out.
 
 


-- 
Regards
Darshan

dpra

unread,
Jul 15, 2013, 3:10:01 AM7/15/13
to quar...@googlegroups.com

I found the following in the 2.0 doc. Thanks for letting me know ICronTrigger John!

==========================

For those unfamiliar with "cron", this means being able to create a firing schedule such as: "At 8:00am every Monday through Friday" or "At 1:30am every last Friday of the month".

The format of a "Cron-Expression" string is documented on the CronExpression class.

Here are some full examples:

Expression
Meaning
"0 0 12 * * ?"" />
Fire at 12pm (noon) every day" />
"0 15 10 ? * *"" />
Fire at 10:15am every day" />
"0 15 10 * * ?"" />
Fire at 10:15am every day" />
"0 15 10 * * ? *"" />
Fire at 10:15am every day" />
"0 15 10 * * ? 2005"" />
Fire at 10:15am every day during the year 2005" />
"0 * 14 * * ?"" />
Fire every minute starting at 2pm and ending at 2:59pm, every day" />
"0 0/5 14 * * ?"" />
Fire every 5 minutes starting at 2pm and ending at 2:55pm, every day" />
"0 0/5 14,18 * * ?"" />
Fire every 5 minutes starting at 2pm and ending at 2:55pm, AND fire every 5 minutes starting at 6pm and ending at 6:55pm, every day" />
"0 0-5 14 * * ?"" />
Fire every minute starting at 2pm and ending at 2:05pm, every day" />
"0 10,44 14 ? 3 WED"" />
Fire at 2:10pm and at 2:44pm every Wednesday in the month of March." />
"0 15 10 ? * MON-FRI"" />
Fire at 10:15am every Monday, Tuesday, Wednesday, Thursday and Friday" />
"0 15 10 15 * ?"" />
Fire at 10:15am on the 15th day of every month" />
"0 15 10 L * ?"" />
Fire at 10:15am on the last day of every month" />
"0 15 10 ? * 6L"" />
Fire at 10:15am on the last Friday of every month" />
"0 15 10 ? * 6L"" />
Fire at 10:15am on the last Friday of every month" />
"0 15 10 ? * 6L 2002-2005"" />
Fire at 10:15am on every last Friday of every month during the years 2002, 2003, 2004 and 2005" />
"0 15 10 ? * 6#3"" />
Fire at 10:15am on the third Friday of every month" />

Pay attention to the effects of '?' and '*' in the day-of-week and day-of-month fields!

dpra

unread,
Jul 15, 2013, 3:13:01 AM7/15/13
to quar...@googlegroups.com, darshan.ud...@starmarksv.com
Thank you Darshan! That's Awesome!!

Ellen Botha

unread,
Jul 15, 2013, 3:09:11 AM7/15/13
to quar...@googlegroups.com
Hi Drpa

I Just wanted to answer the question about what the 'x' is .
the 'x' statement is called a lambda expression, for more information about that you can check out this link:

The Lambda expressions is mostly used for Linq To SQL/Objects/Entities for filtering ect.

I hope this helps

Regards 


--
You received this message because you are subscribed to the Google Groups "Quartz.NET" group.
To unsubscribe from this group and stop receiving emails from it, send an email to quartznet+...@googlegroups.com.
To post to this group, send email to quar...@googlegroups.com.
Visit this group at http://groups.google.com/group/quartznet.
For more options, visit https://groups.google.com/groups/opt_out.
 
 



--
Ellen Botha

botha...@gmail.com

dpra

unread,
Jul 18, 2013, 7:49:43 PM7/18/13
to quar...@googlegroups.com
Hi there,

Thank you for that. Something new to learn yay!! :)

Really appreciate it!

Cheers
Reply all
Reply to author
Forward
0 new messages