You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What did these pages not make clear?
ActorRefExtensions.IsNobody logic clearly check if an ActorRef is invalid, but the documentation says the opposite.
An actorRef is thought to be invalid if it's one of the following: null, Nobody and DeadLetterActorRef.
Returns true if the actorRef is valid; otherwise false.
How can we do it better?
Inverting the returns part of the documentation: Returns true if the actorRef is invalid; otherwise false.
The text was updated successfully, but these errors were encountered:
Which pages have you looked at?
https://github.com/akkadotnet/akka.net/blob/dev/src/core/Akka/Actor/ActorRef.Extensions.cs
What did these pages not make clear?
ActorRefExtensions.IsNobody logic clearly check if an ActorRef is invalid, but the documentation says the opposite.
An actorRef is thought to be invalid if it's one of the following: null, Nobody and DeadLetterActorRef.
Returns true if the actorRef is valid; otherwise false.
How can we do it better?
Inverting the returns part of the documentation:
Returns true if the actorRef is invalid; otherwise false.
The text was updated successfully, but these errors were encountered: