I m using Akka.Net 1.4.1 in Windows 10 environment.
I m using async await tasks within Untyped actor and so far have not run into any issues. As expected, only the current message is processed until await for a task is completed within the OnReceive method. No parallel messaging processing for the same actor begins until one message is completely handled. However, I could not find this as a documented behavior. Most of the posts talk about using ReceiveAsync to have this behavior.
Can anyone confirm the behavior of using Async/Await inside OnReceive method of Untyped Actors in post Akka.Net 1.4.1 version?