Fix fire and forget wording (#28160)
This commit is contained in:
parent
6bf36c2517
commit
d4ed47f309
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ Message exchange with Actors follow a few common patterns, let's go through each
|
|||
|
||||
The fundamental way to interact with an actor is through @scala["tell", which is so common that it has a special symbolic method name: `actorRef ! message`]@java[`actorRef.tell(message)`]. Sending a message with tell can safely be done from any thread.
|
||||
|
||||
Tell is asynchronous which means that the method returns right away, when the statement after it is executed there is no guarantee that the message has been processed by the recipient yet. It also means there is no way to know if the message was received, the processing succeeded or failed.
|
||||
Tell is asynchronous which means that the method returns right away. After the statement is executed there is no guarantee that the message has been processed by the recipient yet. It also means there is no way to know if the message was received, the processing succeeded or failed.
|
||||
|
||||
**Example:**
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue