DOC: Strange link names, see #3259

This commit is contained in:
Patrik Nordwall 2013-07-01 15:21:56 +02:00
parent 1cca2b85e3
commit ea315e85a7
5 changed files with 11 additions and 10 deletions

View file

@ -7,7 +7,8 @@ The previous section about :ref:`actor-systems` explained how actors form
hierarchies and are the smallest unit when building an application. This hierarchies and are the smallest unit when building an application. This
section looks at one such actor in isolation, explaining the concepts you section looks at one such actor in isolation, explaining the concepts you
encounter while implementing it. For a more in depth reference with all the encounter while implementing it. For a more in depth reference with all the
details please refer to :ref:`actors-scala` and :ref:`untyped-actors-java`. details please refer to
:ref:`Actors (Scala) <actors-scala>` and :ref:`Untyped Actors (Java) <untyped-actors-java>`.
An actor is a container for `State`_, `Behavior`_, a `Mailbox`_, `Children`_ An actor is a container for `State`_, `Behavior`_, a `Mailbox`_, `Children`_
and a `Supervisor Strategy`_. All of this is encapsulated behind an `Actor and a `Supervisor Strategy`_. All of this is encapsulated behind an `Actor

View file

@ -182,7 +182,7 @@ and parsed by the actor system can be displayed like this:
.. code-block:: java .. code-block:: java
final ActorSystem system = ActorSystem.create(); final ActorSystem system = ActorSystem.create();
println(system.settings()); System.out.println(system.settings());
// this is a shortcut for system.settings().config().root().render() // this is a shortcut for system.settings().config().root().render()
A Word About ClassLoaders A Word About ClassLoaders

View file

@ -13,7 +13,7 @@ Akka can be used in different ways:
be put into ``WEB-INF/lib`` be put into ``WEB-INF/lib``
- As a stand alone application by instantiating ActorSystem in a main class or - As a stand alone application by instantiating ActorSystem in a main class or
using the :ref:`microkernel-scala` / :ref:`microkernel-java` using the :ref:`Microkernel (Scala) <microkernel-scala>` / :ref:`Microkernel (Java) <microkernel-java>`
Using Akka as library Using Akka as library
@ -28,5 +28,5 @@ Using Akka as a stand alone microkernel
---------------------------------------- ----------------------------------------
Akka can also be run as a stand-alone microkernel. See Akka can also be run as a stand-alone microkernel. See
:ref:`microkernel-scala` / :ref:`microkernel-java` for :ref:`Microkernel (Scala) <microkernel-scala>` / :ref:`Microkernel (Java) <microkernel-java>` for
more information. more information.

View file

@ -107,7 +107,7 @@ application jar in the ``deploy`` directory and use the scripts in the ``bin``
directory. directory.
More information is available in the documentation of the More information is available in the documentation of the
:ref:`microkernel-scala` / :ref:`microkernel-java`. :ref:`Microkernel (Scala) <microkernel-scala>` / :ref:`Microkernel (Java) <microkernel-java>`.
.. _build-tool: .. _build-tool:
@ -231,8 +231,8 @@ Do not use -optimize Scala compiler flag
---------------------------------------- ----------------------------------------
.. warning:: .. warning::
Akka has not been compiled or tested with -optimize Scala compiler flag. Akka has not been compiled or tested with -optimize Scala compiler flag.
Strange behavior has been reported by users that have tried it. Strange behavior has been reported by users that have tried it.

View file

@ -36,7 +36,7 @@ Actors give you:
- Asynchronous, non-blocking and highly performant event-driven programming model. - Asynchronous, non-blocking and highly performant event-driven programming model.
- Very lightweight event-driven processes (approximately 2.7 million actors per GB RAM). - Very lightweight event-driven processes (approximately 2.7 million actors per GB RAM).
See :ref:`actors-scala` and :ref:`untyped-actors-java` See :ref:`Actors (Scala) <actors-scala>` and :ref:`Untyped Actors (Java) <untyped-actors-java>`
Fault Tolerance Fault Tolerance
--------------- ---------------
@ -45,7 +45,7 @@ Fault Tolerance
- Supervisor hierarchies can span over multiple JVMs to provide truly fault-tolerant systems. - Supervisor hierarchies can span over multiple JVMs to provide truly fault-tolerant systems.
- Excellent for writing highly fault-tolerant systems that self-heal and never stop. - Excellent for writing highly fault-tolerant systems that self-heal and never stop.
See :ref:`fault-tolerance-scala` and :ref:`fault-tolerance-java` See :ref:`Fault Tolerance (Scala) <fault-tolerance-scala>` and :ref:`Fault Tolerance (Java) <fault-tolerance-java>`
Location Transparency Location Transparency
--------------------- ---------------------
@ -60,7 +60,7 @@ Transactors
Transactors combine actors and Software Transactional Memory (STM) into transactional actors. Transactors combine actors and Software Transactional Memory (STM) into transactional actors.
It allows you to compose atomic message flows with automatic retry and rollback. It allows you to compose atomic message flows with automatic retry and rollback.
See :ref:`transactors-scala` and :ref:`transactors-java` See :ref:`Transactors (Scala) <transactors-scala>` and :ref:`Transactors (Java) <transactors-java>`
Scala and Java APIs Scala and Java APIs