onComplete() 추가

master
mjkhan21 10 months ago
parent 18fa96d134
commit 5b5baf6979

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