这是TimerTask
vs ScheduledThreadPoolExecutor
vs netty的HashedWheelTimer
问题。
我正在查看播放框架文档。 timeout
中有一个名为play.api.libs.concurrent.Promise
的方法。基本上它安排了要执行的任务。以下是实施:
private val timer = new java.util.Timer()
def timeout[A](message: => A, duration: Long, unit: TimeUnit = TimeUnit.MILLISECONDS)(implicit ec: ExecutionContext): Future[A] = {
val p = Promise[A]()
timer.schedule( new java.util.TimerTask{
def run(){
p.completeWith(Future(message)(ec))
}
},unit.toMillis(duration) )
p.future
}
为什么TimerTask
是更好的实施时,他们会在SCTE
使用HashedWheelTimer
。为什么即使Akka将其用于scheduler
时,netty的{{1}}也是如此?如何优于另一个。