在哪里可以找到 Akka actor 最新版本的源代码?

Where can I find the source code for Akka actor latest version?

我正在尝试查找 Akka actors 的 Scala 源代码。 我知道在以下地址有一个 Akka 演员的 GitHub 回购协议。 https://github.com/akka/akka/tree/master/akka-actor

但是,当我尝试查找特定的 class 时,例如akka.actor.ActorContext,在这个 repo 中(例如 https://github.com/akka/akka/tree/master/akka-actor/src/main/scala/akka/actor),我找不到它。

所以,我想知道如何才能获得Akka actors的完整源代码。我对无类型版本感兴趣。

首先克隆存储库:

git clone https://github.com/akka/akka.git

你找不到 akka.actor.ActorContext 的原因是因为它在这个 Scala 源文件中被定义为 trait: akka-actor/src/main/scala/akka/actor/ActorCell.scala