index for java api
This commit is contained in:
parent
9c7242f374
commit
88d400a4e9
3 changed files with 16 additions and 9 deletions
|
|
@ -7,6 +7,7 @@ Contents
|
||||||
intro/index
|
intro/index
|
||||||
general/index
|
general/index
|
||||||
scala/index
|
scala/index
|
||||||
|
java/index
|
||||||
dev/index
|
dev/index
|
||||||
|
|
||||||
Links
|
Links
|
||||||
|
|
|
||||||
7
akka-docs/java/index.rst
Normal file
7
akka-docs/java/index.rst
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
Java API
|
||||||
|
=========
|
||||||
|
|
||||||
|
.. toctree::
|
||||||
|
:maxdepth: 2
|
||||||
|
|
||||||
|
untyped-actors
|
||||||
|
|
@ -1,7 +1,5 @@
|
||||||
Actors (Java)
|
Actors
|
||||||
=============
|
======
|
||||||
|
|
||||||
=
|
|
||||||
|
|
||||||
Module stability: **SOLID**
|
Module stability: **SOLID**
|
||||||
|
|
||||||
|
|
@ -412,8 +410,9 @@ Actor life-cycle
|
||||||
|
|
||||||
The actor has a well-defined non-circular life-cycle.
|
The actor has a well-defined non-circular life-cycle.
|
||||||
|
|
||||||
`<code>`_
|
::
|
||||||
NEW (newly created actor) - can't receive messages (yet)
|
|
||||||
=> STARTED (when 'start' is invoked) - can receive messages
|
NEW (newly created actor) - can't receive messages (yet)
|
||||||
=> SHUT DOWN (when 'exit' or 'stop' is invoked) - can't do anything
|
=> STARTED (when 'start' is invoked) - can receive messages
|
||||||
`<code>`_
|
=> SHUT DOWN (when 'exit' or 'stop' is invoked) - can't do anything
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue