I have tried to read the Akka documentation to find out the exact difference between Typed and Untyped actors. When to use what? I am not sure what I\'m missing. Can somebody po
UntypedActor is simply the name for Actor but as the Java API.
Here are some links to documentation:
Java:
Scala:
The difference is that TypedActors have a static interface, and the invocations of the methods on that interface is transformed into message sends. UntypedActors can receive any message.
Hope that helps.
Cheers, √