Renaming sendOneWay to tell, closing ticket #1072
This commit is contained in:
parent
29ca6a867b
commit
04729bcbc3
32 changed files with 94 additions and 94 deletions
|
|
@ -81,7 +81,7 @@ You can also set the thread to a reference to be able to control its life-cycle:
|
|||
|
||||
... // time passes
|
||||
|
||||
t.sendOneWay(new Exit()); // shut down the thread
|
||||
t.tell(new Exit()); // shut down the thread
|
||||
|
||||
Examples
|
||||
--------
|
||||
|
|
@ -190,6 +190,6 @@ Example in Akka:
|
|||
});
|
||||
|
||||
// shut down the threads
|
||||
main.sendOneWay(new Exit());
|
||||
setY.sendOneWay(new Exit());
|
||||
setV.sendOneWay(new Exit());
|
||||
main.tell(new Exit());
|
||||
setY.tell(new Exit());
|
||||
setV.tell(new Exit());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue