<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'How to do job scheduling in java' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'How to do job scheduling in java' posted on the 'Java' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Sat, 25 May 2013 16:53:42 -0700</pubDate>
    <lastBuildDate>Sat, 25 May 2013 16:53:42 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>How to do job scheduling in java</title>
      <link>http://www.programmersheaven.com/mb/java/299993/299993/how-to-do-job-scheduling-in-java/</link>
      <description>i am developing a software for a enterprise which needs job scheduling to be done.I have written some programs but those are not working.So give me some sample programs to do job scheduling.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java/299993/299993/how-to-do-job-scheduling-in-java/</guid>
      <pubDate>Mon, 18 Apr 2005 22:56:34 -0700</pubDate>
      <category>Java</category>
    </item>
    <item>
      <title>Re: How to do job scheduling in java</title>
      <link>http://www.programmersheaven.com/mb/java/299993/300240/re-how-to-do-job-scheduling-in-java/#300240</link>
      <description>: i am developing a software for a enterprise which needs job scheduling to be done.I have written some programs but those are not working.So give me some sample programs to do job scheduling.&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;
I'm not sure of what exactly it is that you want, but if you use a timer you can schedule it to send actionevents at certain times. That way you can run the jobs when the action event is received.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java/299993/300240/re-how-to-do-job-scheduling-in-java/#300240</guid>
      <pubDate>Wed, 20 Apr 2005 10:51:47 -0700</pubDate>
      <category>Java</category>
    </item>
    <item>
      <title>Re: How to do job scheduling in java</title>
      <link>http://www.programmersheaven.com/mb/java/299993/300291/re-how-to-do-job-scheduling-in-java/#300291</link>
      <description>: : i am developing a software for a enterprise which needs job scheduling to be done.I have written some programs but those are not working.So give me some sample programs to do job scheduling.&lt;br /&gt;
: : &lt;br /&gt;
: &lt;br /&gt;
: I'm not sure of what exactly it is that you want, but if you use a timer you can schedule it to send actionevents at certain times. That way you can run the jobs when the action event is received.&lt;br /&gt;
: &lt;br /&gt;
Thank u for the suggestion.I know about about the timer class.Can you give me a sample code in which i can sechedule two or more tasks.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java/299993/300291/re-how-to-do-job-scheduling-in-java/#300291</guid>
      <pubDate>Wed, 20 Apr 2005 23:14:52 -0700</pubDate>
      <category>Java</category>
    </item>
    <item>
      <title>Re: How to do job scheduling in java</title>
      <link>http://www.programmersheaven.com/mb/java/299993/300295/re-how-to-do-job-scheduling-in-java/#300295</link>
      <description>: : : i am developing a software for a enterprise which needs job scheduling to be done.I have written some programs but those are not working.So give me some sample programs to do job scheduling.&lt;br /&gt;
: : : &lt;br /&gt;
: : &lt;br /&gt;
: : I'm not sure of what exactly it is that you want, but if you use a timer you can schedule it to send actionevents at certain times. That way you can run the jobs when the action event is received.&lt;br /&gt;
: : &lt;br /&gt;
: Thank u for the suggestion.I know about about the timer class.Can you give me a sample code in which i can sechedule two or more tasks.&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;
What tasks do you want to do? I was talking very generally, because when you catch that event, just call the code you need to call for the job to finish.&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java/299993/300295/re-how-to-do-job-scheduling-in-java/#300295</guid>
      <pubDate>Thu, 21 Apr 2005 01:16:37 -0700</pubDate>
      <category>Java</category>
    </item>
    <item>
      <title>Re: How to do job scheduling in java</title>
      <link>http://www.programmersheaven.com/mb/java/299993/300298/re-how-to-do-job-scheduling-in-java/#300298</link>
      <description>: : : : i am developing a software for a enterprise which needs job scheduling to be done.I have written some programs but those are not working.So give me some sample programs to do job scheduling.&lt;br /&gt;
: : : : &lt;br /&gt;
: : : &lt;br /&gt;
: : : I'm not sure of what exactly it is that you want, but if you use a timer you can schedule it to send actionevents at certain times. That way you can run the jobs when the action event is received.&lt;br /&gt;
: : : &lt;br /&gt;
: : Thank u for the suggestion.I know about about the timer class.Can you give me a sample code in which i can sechedule two or more tasks.&lt;br /&gt;
: : &lt;br /&gt;
: &lt;br /&gt;
: What tasks do you want to do? I was talking very generally, because when you catch that event, just call the code you need to call for the job to finish.&lt;br /&gt;
: &lt;br /&gt;
: &lt;br /&gt;
Tasks i want to do is to send mails,Receive mails and do Escalation of mails to higher authorities.Escalation means the mail will be sent to higher authorities when the people under them will not reply to the customer's mail.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java/299993/300298/re-how-to-do-job-scheduling-in-java/#300298</guid>
      <pubDate>Thu, 21 Apr 2005 01:54:04 -0700</pubDate>
      <category>Java</category>
    </item>
    <item>
      <title>Re: How to do job scheduling in java</title>
      <link>http://www.programmersheaven.com/mb/java/299993/300409/re-how-to-do-job-scheduling-in-java/#300409</link>
      <description>: : : : : i am developing a software for a enterprise which needs job scheduling to be done.I have written some programs but those are not working.So give me some sample programs to do job scheduling.&lt;br /&gt;
: : : : : &lt;br /&gt;
: : : : &lt;br /&gt;
: : : : I'm not sure of what exactly it is that you want, but if you use a timer you can schedule it to send actionevents at certain times. That way you can run the jobs when the action event is received.&lt;br /&gt;
: : : : &lt;br /&gt;
: : : Thank u for the suggestion.I know about about the timer class.Can you give me a sample code in which i can sechedule two or more tasks.&lt;br /&gt;
: : : &lt;br /&gt;
: : &lt;br /&gt;
: : What tasks do you want to do? I was talking very generally, because when you catch that event, just call the code you need to call for the job to finish.&lt;br /&gt;
: : &lt;br /&gt;
: : &lt;br /&gt;
: Tasks i want to do is to send mails,Receive mails and do Escalation of mails to higher authorities.Escalation means the mail will be sent to higher authorities when the people under them will not reply to the customer's mail.&lt;br /&gt;
: &lt;br /&gt;
I just wanted a sample code of job scheduling, Eg:-Jobs scheduled whenever a samll task is performed, job to be done after 2 hours.I dont need java mail code.Only the core java code.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java/299993/300409/re-how-to-do-job-scheduling-in-java/#300409</guid>
      <pubDate>Thu, 21 Apr 2005 22:59:48 -0700</pubDate>
      <category>Java</category>
    </item>
  </channel>
</rss>