1つのジョブを停止して終了する時間をスケジュールするにはどうすればよいですか 実行タスクの開始からですか? たとえば、1時間後にタスクがまだ機能している場合、タスクは停止して削除されます。私はJavaでorg.quartz.Schedulerとorg.quartz.JobDetailで使用 実行中にorg.quartz.JobDetailを停止する時間を決定する方法は?
多くのおかげ
1つのジョブを停止して終了する時間をスケジュールするにはどうすればよいですか 実行タスクの開始からですか? たとえば、1時間後にタスクがまだ機能している場合、タスクは停止して削除されます。私はJavaでorg.quartz.Schedulerとorg.quartz.JobDetailで使用 実行中にorg.quartz.JobDetailを停止する時間を決定する方法は?
多くのおかげ
を(私は繰り返しタスクに意味するものではありません)あなたはorg.quartz.InterruptableJobインターフェイスに見たいと思うかもしれません(Jobを拡張する)とinterrupt()メソッドをスケジューラ上で実行します。
実際にワーカースレッドプール内のスレッドでThread.interrupt()を呼び出す場合は、org.quartz.spi.ThreadPoolの実装が必要になる可能性があります。
この機能をジョブ内でコーディングすると、おそらくあなたのほうが簡単だと思います。
If you change your class to implement StatefulJob instead of Job, Quartz will take care of this for you. From the StatefulJob javadoc:
stateful jobs are not allowed to execute concurrently, which means new triggers that occur before the completion of the execute(xx) method will be delayed.
StatefulJob extends Job and does not add any new methods, so all you need to do to get the behaviour you want is change this:
public class YourJob implements org.quartz.Job {
void execute(JobExecutionContext context) {/*implementation omitted*/}
}
To this:
public class YourJob implements org.quartz.StatefulJob {
void execute(JobExecutionContext context) {/*implementation omitted*/}
}
ジョブを開始する前にタスクの存続時間を決定する方法と、停止時間の到着時にメソッドにコールしない方法はありますか? – cls
もう1つのジョブを追加して、他のジョブを強制終了し、それに応じてスケジュールすることができます。 – Sathwick