Java定时任务ScheduledThreadPoolExecutor(三)

2014-11-24 09:01:41 · 作者: · 浏览: 2
Task(r, task);
}

protected RunnableScheduledFuture decorateTask(
Callable c, RunnableScheduledFuture task) {
return new CustomTask(c, task);
}
// ... add constructors, etc.
}

作者:huxiweng