简体   繁体   中英

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

I am trying to find the Scala source code for Akka actors. I know there is a GitHub repo at the following address for Akka actor. https://github.com/akka/akka/tree/master/akka-actor

However, when I try finding a specific class, eg akka.actor.ActorContext, in this repo (eg https://github.com/akka/akka/tree/master/akka-actor/src/main/scala/akka/actor ), I cannot find it.

So, I was wondering, how can I obtain the entire source code for Akka actors. I am interested in the untyped version.

Clone the repo first:

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

The reason you can't find akka.actor.ActorContext is because it's defined as trait in this Scala source file: akka-actor/src/main/scala/akka/actor/ActorCell.scala

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM