Merge pull request #731 from akka/wip-2527-√

Removing warning about not touching instance fields in receive
This commit is contained in:
Viktor Klang (√) 2012-09-24 01:50:46 -07:00
commit 4e4acef959
2 changed files with 1 additions and 11 deletions

View file

@ -66,11 +66,6 @@ behavior logic, or the function itself may be swapped out at runtime, see the
during construction of the actor object is special in the sense that a restart during construction of the actor object is special in the sense that a restart
of the actor will reset its behavior to this initial one. of the actor will reset its behavior to this initial one.
.. note::
The initial behavior of an Actor is extracted prior to constructor is run,
so if you want to base your initial behavior on member state, you should
use ``become`` in the constructor.
Mailbox Mailbox
------- -------

View file

@ -56,11 +56,6 @@ stored within the actor as its “initial behavior”, see `Become/Unbecome`_ fo
further information on changing the behavior of an actor after its further information on changing the behavior of an actor after its
construction. construction.
.. note::
The initial behavior of an Actor is extracted prior to constructor is run,
so if you want to base your initial behavior on member state, you should
use ``become`` in the constructor.
Creating Actors with default constructor Creating Actors with default constructor
---------------------------------------- ----------------------------------------