Fix fire and forget wording (#28160)

This commit is contained in:
Luke Eller 2019-11-12 18:38:05 +11:00 committed by Johan Andrén
parent 6bf36c2517
commit d4ed47f309

View file

@ -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:**