|
`Send` is a non-blocking, fire-and-forget method for sending a message to an actor. The message will be enqueued in the receiving actor's mailbox and will eventually be processed, assuming the actor isn't stopped. Tell is also the most performant way of communicating with actors, so it is the preferred default unless your use case requires a request/reply pattern of communication. |
"Tell is also" -> "Send is also".
Is the old API named Tell?
Asynkron.Documentation/docs/ProtoActor/pid.md
Line 39 in 6f5f0a6
"Tell is also" -> "
Sendis also".Is the old API named
Tell?