What's difference between UntypedActor and ReceiveActor in Akka.Net?

Viewed 494
1 Answers

with more research, found that ReceiveActor inherits UntypedActor, and within it, I can declare specific methods to handle without putting everything into OnReceive method, using Receive()

for more details

https://getakka.net/api/Akka.Actor.ReceiveActor.html

Related