throws Exception {
if (isDesired(comingChore) == false)
return false;
Hashtable nameToChoreHashtable = (Hashtable) Registry.nameToChoreHashtable.clone();
Job job = new CreateJob().createJob(comingChore, nameToChoreHashtable);
TimerTask timerTask = new CommonTimerTask(comingChore, job, triggering);
Timer timer = new Timer();
timer.schedule(timerTask, comingChore.delay);