Core concept
class MyActor extends Actor {
def receive = { case msg => println(msg) }
}Advertisement
How it works
Untyped actors deprecated. Akka Typed is new standard.
Advertisement
Trade-offs + gotchas
Concurrent state without locks. Distributed systems.