<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Quartz fits</title>
	<atom:link href="http://www.codesmell.org/blog/2009/01/quartz-fits/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codesmell.org/blog/2009/01/quartz-fits/</link>
	<description>another useless blog, virtually noone is going to read....</description>
	<lastBuildDate>Tue, 01 Mar 2011 17:10:12 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<item>
		<title>By: Uwe Schaefer</title>
		<link>http://www.codesmell.org/blog/2009/01/quartz-fits/comment-page-1/#comment-327</link>
		<dc:creator>Uwe Schaefer</dc:creator>
		<pubDate>Thu, 04 Nov 2010 08:01:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.codesmell.org/blog/1970/01/quartz-fits/#comment-327</guid>
		<description>the example above belongs to an outdated api, but i guess the current way would be:
http://www.quartz-scheduler.org/docs/api/1.8.1/org/quartz/Scheduler.html#shutdown(boolean)</description>
		<content:encoded><![CDATA[<p>the example above belongs to an outdated api, but i guess the current way would be:<br />
<a href="http://www.quartz-scheduler.org/docs/api/1.8.1/org/quartz/Scheduler.html#shutdown(boolean)" rel="nofollow">http://www.quartz-scheduler.org/docs/api/1.8.1/org/quartz/Scheduler.html#shutdown(boolean)</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JJczopek</title>
		<link>http://www.codesmell.org/blog/2009/01/quartz-fits/comment-page-1/#comment-315</link>
		<dc:creator>JJczopek</dc:creator>
		<pubDate>Sat, 09 Oct 2010 22:07:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.codesmell.org/blog/1970/01/quartz-fits/#comment-315</guid>
		<description>How can I shutdown Quartz in GuiceContextListener in contextDestroyed() method?</description>
		<content:encoded><![CDATA[<p>How can I shutdown Quartz in GuiceContextListener in contextDestroyed() method?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Uwe Schaefer</title>
		<link>http://www.codesmell.org/blog/2009/01/quartz-fits/comment-page-1/#comment-149</link>
		<dc:creator>Uwe Schaefer</dc:creator>
		<pubDate>Sun, 11 Apr 2010 10:41:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.codesmell.org/blog/1970/01/quartz-fits/#comment-149</guid>
		<description>You´re welcome.</description>
		<content:encoded><![CDATA[<p>You´re welcome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bo</title>
		<link>http://www.codesmell.org/blog/2009/01/quartz-fits/comment-page-1/#comment-140</link>
		<dc:creator>Bo</dc:creator>
		<pubDate>Wed, 07 Apr 2010 20:58:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.codesmell.org/blog/1970/01/quartz-fits/#comment-140</guid>
		<description>Uwe - thank you again! You really saved the day for me</description>
		<content:encoded><![CDATA[<p>Uwe &#8211; thank you again! You really saved the day for me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Uwe Schaefer</title>
		<link>http://www.codesmell.org/blog/2009/01/quartz-fits/comment-page-1/#comment-139</link>
		<dc:creator>Uwe Schaefer</dc:creator>
		<pubDate>Wed, 07 Apr 2010 19:50:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.codesmell.org/blog/1970/01/quartz-fits/#comment-139</guid>
		<description>Hi Bo, please see updated article. you´d want to schedule a JobDetail together with a trigger. In the example i used an Activator to do this at wiring time.

output should be something like:

Guice ready, waiting 130 secs now...
Main$FooJob@2a5330 was created
Main$FooJob@2a5330 was run!
Main$FooJob@10655dd was created
Main$FooJob@10655dd was run!
Main$FooJob@ef5502 was created
Main$FooJob@ef5502 was run!
shutdown
done

You see one creation and execution of FooJob each at now, now+1m and now+2m.</description>
		<content:encoded><![CDATA[<p>Hi Bo, please see updated article. you´d want to schedule a JobDetail together with a trigger. In the example i used an Activator to do this at wiring time.</p>
<p>output should be something like:</p>
<p>Guice ready, waiting 130 secs now&#8230;<br />
Main$FooJob@2a5330 was created<br />
Main$FooJob@2a5330 was run!<br />
Main$FooJob@10655dd was created<br />
Main$FooJob@10655dd was run!<br />
Main$FooJob@ef5502 was created<br />
Main$FooJob@ef5502 was run!<br />
shutdown<br />
done</p>
<p>You see one creation and execution of FooJob each at now, now+1m and now+2m.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bo</title>
		<link>http://www.codesmell.org/blog/2009/01/quartz-fits/comment-page-1/#comment-133</link>
		<dc:creator>Bo</dc:creator>
		<pubDate>Tue, 06 Apr 2010 18:53:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.codesmell.org/blog/1970/01/quartz-fits/#comment-133</guid>
		<description>Hi Uwe,

I&#039;m very new to Guice so can you please answer this (I did faithfully wired parts according to your example):
1. It&#039;s not obvious how to set-up the scheduler. Where and how would I wire the Trigger (I can use Trigger#makeMinutelyTrigger)?
2. I really have just one type of job I will be executing, I understand that details in the JobFactory#newJob are coming from the TriggerFiredBundle parameter but where/how do I wire that? And where/how do I create or wire concrete Job?
I have a post on StackOverflow.com that references your excellent article - http://bit.ly/auBM3k

Thanks,

Bo Stone</description>
		<content:encoded><![CDATA[<p>Hi Uwe,</p>
<p>I&#8217;m very new to Guice so can you please answer this (I did faithfully wired parts according to your example):<br />
1. It&#8217;s not obvious how to set-up the scheduler. Where and how would I wire the Trigger (I can use Trigger#makeMinutelyTrigger)?<br />
2. I really have just one type of job I will be executing, I understand that details in the JobFactory#newJob are coming from the TriggerFiredBundle parameter but where/how do I wire that? And where/how do I create or wire concrete Job?<br />
I have a post on StackOverflow.com that references your excellent article &#8211; <a href="http://bit.ly/auBM3k" rel="nofollow">http://bit.ly/auBM3k</a></p>
<p>Thanks,</p>
<p>Bo Stone</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Uwe Schaefer</title>
		<link>http://www.codesmell.org/blog/2009/01/quartz-fits/comment-page-1/#comment-97</link>
		<dc:creator>Uwe Schaefer</dc:creator>
		<pubDate>Mon, 28 Dec 2009 12:22:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.codesmell.org/blog/1970/01/quartz-fits/#comment-97</guid>
		<description>*g* glad to hear that. i agree that the API does not feel right in every corner, but it does the job. there certainly are more entertaining things out there than creating yet-another-cron-in-java.</description>
		<content:encoded><![CDATA[<p>*g* glad to hear that. i agree that the API does not feel right in every corner, but it does the job. there certainly are more entertaining things out there than creating yet-another-cron-in-java.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eelco</title>
		<link>http://www.codesmell.org/blog/2009/01/quartz-fits/comment-page-1/#comment-96</link>
		<dc:creator>Eelco</dc:creator>
		<pubDate>Mon, 14 Dec 2009 15:13:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.codesmell.org/blog/1970/01/quartz-fits/#comment-96</guid>
		<description>Ok, you convinced me to not roll out my own. I&#039;ve used Quartz with success in the past, but every time I go through the API, I also think, hmmm, I would&#039;ve done it like this and that... (arrogant, isn&#039;t it!). But you&#039;re right, Quartz is stable and does the job well, and hey even integration with Guice is a piece of cake, so no excuses :-)</description>
		<content:encoded><![CDATA[<p>Ok, you convinced me to not roll out my own. I&#8217;ve used Quartz with success in the past, but every time I go through the API, I also think, hmmm, I would&#8217;ve done it like this and that&#8230; (arrogant, isn&#8217;t it!). But you&#8217;re right, Quartz is stable and does the job well, and hey even integration with Guice is a piece of cake, so no excuses <img src='http://www.codesmell.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

