onComplete() 추가

master
mjkhan21 10 months ago
parent 18fa96d134
commit 5b5baf6979

@ -19,6 +19,7 @@ public class ScheduledServiceBean extends AbstractServiceBean {
task.run();
} finally {
scheduled.setBusy(false);
onComplete();
}
}
@ -35,6 +36,11 @@ public class ScheduledServiceBean extends AbstractServiceBean {
return task.get();
} finally {
scheduled.setBusy(false);
onComplete();
}
}
/** .
*/
protected void onComplete() {}
}
Loading…
Cancel
Save