我正在尝试使用 Akka TypedActors (1.1.2)。我有一个类似的界面
trait Namespace {
def cellCount: Int
def isEmpty: Boolean
def cell(key: String): Option[CellOperations[_]]
def cellsLike(key: String): List[CellOperations[_]]
def updateOrCreateCell[T](n: String, v: Option[T]=None, d:List[DataOps[T]]=List.empty[DataOps[T]])
}
我有一个定义明确的 NamespaceImpl 来扩展它。
class NamespaceImpl extends TypedActor with Namespace with Logging {
...
}
我通过 Spring 创建了 actor:
<akka:typed-actor id="namespace"
interface="com.fi.depends.namespace.akka.Namespace"
implementation="com.fi.depends.namespace.akka.NamespaceImpl"
timeout="10000"
scope="singleton">
</akka:typed-actor>
在运行时,我会定期对 updateOrCreateCell 的调用超时,据我了解,这不应该发生,因为该方法是 Unit 类型,因此我希望它生成异步调用。
在堆栈跟踪中,我看到:
akka.dispatch.FutureTimeoutException: Futures timed out after [10000] milliseconds
[NYCWD2328_1c52ee80-c372-11e0-8343-0023ae9118d8]
at akka.dispatch.DefaultCompletableFuture.await(Future.scala:718)
at akka.actor.ScalaActorRef$class.$bang$bang(ActorRef.scala:1332)
at akka.actor.LocalActorRef.$bang$bang(ActorRef.scala:587)
at akka.actor.ActorAspect.localDispatch(TypedActor.scala:966)
at akka.actor.TypedActorAspect.dispatch(TypedActor.scala:904)
at akka.actor.TypedActorAspect.invoke(TypedActor.scala:899)
at com.fi.depends.namespace.akka.Namespace$$ProxiedByAWDelegation$$1314085842186_1__786390915__878797045___AW_JoinPoint.proceed(Unknown Source)
at com.fi.depends.namespace.akka.Namespace$$ProxiedByAWDelegation$$1314085842186_1__786390915__878797045___AW_JoinPoint.invoke(Unknown Source)
at com.fi.depends.namespace.akka.Namespace$$ProxiedByAWDelegation$$1314085842186.updateOrCreateCell$default$3(Unknown Source)
我看到 'ScalaActorRef$class.$bang$bang' 的事实告诉我有些事情是非常错误的。
任何帮助,将不胜感激。