RE: Monitor scheduling

2020-07-13 Thread GILQUIN Pierre via Webobjects-dev
Thanks Klaus and Paul. Seems a good idea to look at Quartz Best, Pierre De : Klaus Berkling via Webobjects-dev [mailto:webobjects-dev@lists.apple.com] Envoyé : lundi 13 juillet 2020 16:49 À : WebObjects Development Objet : Re: Monitor scheduling On Jul 12, 2020, at 11:30 PM, GILQUIN Pierre

Re: Monitor scheduling

2020-07-13 Thread Klaus Berkling via Webobjects-dev
> On Jul 12, 2020, at 11:30 PM, GILQUIN Pierre via Webobjects-dev > wrote: > I have a extraction job that need to be ran only one time the week-end. The > process stopped when done > I am not allowed to use crontab to schedule this job. > > I try on the wonder monitor without success so far.

RE: Monitor scheduling

2020-07-13 Thread GILQUIN Pierre via Webobjects-dev
: Amedeo Mantica Objet : Re: Monitor scheduling Hi, we solved an similar requirement like this: * in WOMonitor: add an extra Instance with auto-recover = on * in the app: - store the next execution time in the database - wait until it's time to the job - get the job done. - set the

Re: Monitor scheduling

2020-07-13 Thread René Bock via Webobjects-dev
emory and I really need to stop it and run it only the WE when users don’t use others apps. Pierre De : Amedeo Mantica [mailto:amedeomant...@me.com] Envoyé : lundi 13 juillet 2020 08:36 À : GILQUIN Pierre Cc : WebObjects-Dev Objet : Re: Monitor scheduling https://docs.oracle.com/javase/8/docs/ap

RE: Monitor scheduling

2020-07-12 Thread GILQUIN Pierre via Webobjects-dev
: Monitor scheduling https://docs.oracle.com/javase/8/docs/api/java/util/TimerTask.html Sent from my iPhone On 13 Jul 2020, at 08:30, GILQUIN Pierre via Webobjects-dev wrote:  Hi, I have a extraction job that need to be ran only one time the week-end. The process stopped when done I am not

Re: Monitor scheduling

2020-07-12 Thread Amedeo Mantica via Webobjects-dev
https://docs.oracle.com/javase/8/docs/api/java/util/TimerTask.html Sent from my iPhone > On 13 Jul 2020, at 08:30, GILQUIN Pierre via Webobjects-dev > wrote: > >  > Hi, > > I have a extraction job that need to be ran only one time the week-end. The > process stopped when done > I am not al

Monitor scheduling

2020-07-12 Thread GILQUIN Pierre via Webobjects-dev
Hi, I have a extraction job that need to be ran only one time the week-end. The process stopped when done I am not allowed to use crontab to schedule this job. I try on the wonder monitor without success so far. Is there a way to do that ? To sum-up : scheduled on Saturday night without Auto rec