我尝试实现一个基于 Scala 的 Actor API 的计时器,当前线程 Actor (Actor.self) 作为计时器,一个匿名 Actor 执行需要及时完成的工作。我有以下 Scala 程序
import scala.actors.Actor.self
import scala.actors.TIMEOUT
object Main {
def main(args: Array[String]): Unit = {
val thiz = self
actor {
// do heavy work here
thiz ! "finish"
}
self.reactWithin(1000) {
case "finish" => println("complete")
case TIMEOUT => println("timeout")
}
}
}
当我运行程序时,我收到了
Exception in thread "main" scala.actors.SuspendActorControl
scala.actors.ActorProxy@1d99a4d: caught java.lang.InterruptedException
请告诉我解决问题的方法。