Renaming sendOneWay to tell, closing ticket #1072

This commit is contained in:
Viktor Klang 2011-08-01 17:07:12 +02:00
parent 29ca6a867b
commit 04729bcbc3
32 changed files with 94 additions and 94 deletions

View file

@ -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());