add links to reference.conf to docs
This commit is contained in:
parent
9ed116c4bd
commit
d6b33d15a8
16 changed files with 103 additions and 32 deletions
|
|
@ -1,8 +1,8 @@
|
|||
.. _agents-scala:
|
||||
|
||||
################
|
||||
########
|
||||
Agents
|
||||
################
|
||||
########
|
||||
|
||||
Agents in Akka are inspired by `agents in Clojure`_.
|
||||
|
||||
|
|
@ -32,7 +32,7 @@ dispatched to the same agent from other threads.
|
|||
read or update the Agent.
|
||||
|
||||
Creating Agents
|
||||
============================
|
||||
===============
|
||||
|
||||
Agents are created by invoking ``Agent(value)`` passing in the Agent's initial
|
||||
value and providing an implicit ``ExecutionContext`` to be used for it, for these
|
||||
|
|
@ -106,6 +106,12 @@ Example of monadic usage:
|
|||
|
||||
.. includecode:: code/docs/agent/AgentDocSpec.scala#monadic-example
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
There are several configuration properties for the agents module, please refer
|
||||
to the :ref:`reference configuration <config-akka-agent>`.
|
||||
|
||||
Deprecated Transactional Agents
|
||||
===============================
|
||||
|
||||
|
|
@ -116,4 +122,4 @@ that transaction. If you send to an Agent within a transaction then the dispatch
|
|||
to the Agent will be held until that transaction commits, and discarded if the
|
||||
transaction is aborted. Here's an example:
|
||||
|
||||
.. includecode:: code/docs/agent/AgentDocSpec.scala#transfer-example
|
||||
.. includecode:: code/docs/agent/AgentDocSpec.scala#transfer-example
|
||||
|
|
|
|||
|
|
@ -482,6 +482,11 @@ contains 3 samples:
|
|||
* Quartz Scheduler Example - Showing how simple is to implement a cron-style scheduler by
|
||||
using the Camel Quartz component
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
There are several configuration properties for the Camel module, please refer
|
||||
to the :ref:`reference configuration <config-akka-camel>`.
|
||||
|
||||
Additional Resources
|
||||
====================
|
||||
|
|
|
|||
|
|
@ -725,12 +725,8 @@ Example of system properties to enable remote monitoring and management::
|
|||
Configuration
|
||||
^^^^^^^^^^^^^
|
||||
|
||||
There are several configuration properties for the cluster. We refer to the following
|
||||
reference file for more information:
|
||||
|
||||
|
||||
.. literalinclude:: ../../../akka-cluster/src/main/resources/reference.conf
|
||||
:language: none
|
||||
There are several configuration properties for the cluster. We refer to the
|
||||
:ref:`reference configuration <config-akka-cluster>` for more information.
|
||||
|
||||
Cluster Info Logging
|
||||
--------------------
|
||||
|
|
|
|||
|
|
@ -710,3 +710,10 @@ State machines
|
|||
State machines can be persisted by mixing in the ``FSM`` trait into processors.
|
||||
|
||||
.. includecode:: code/docs/persistence/PersistenceDocSpec.scala#fsm-example
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
There are several configuration properties for the persistence module, please refer
|
||||
to the :ref:`reference configuration <config-akka-persistence>`.
|
||||
|
||||
|
|
|
|||
|
|
@ -492,11 +492,8 @@ and related resources for troubleshooting.
|
|||
Remote Configuration
|
||||
^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
There are lots of configuration properties that are related to remoting in Akka. We refer to the following
|
||||
reference file for more information:
|
||||
|
||||
.. literalinclude:: ../../../akka-remote/src/main/resources/reference.conf
|
||||
:language: none
|
||||
There are lots of configuration properties that are related to remoting in Akka. We refer to the
|
||||
:ref:`reference configuration <config-akka-remote>` for more information.
|
||||
|
||||
.. note::
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
.. _akka-testkit:
|
||||
|
||||
##############################
|
||||
#####################
|
||||
Testing Actor Systems
|
||||
##############################
|
||||
#####################
|
||||
|
||||
.. toctree::
|
||||
|
||||
|
|
@ -772,3 +772,9 @@ Some `Specs2 <http://specs2.org>`_ users have contributed examples of how to wor
|
|||
* Specifications are by default executed concurrently, which requires some care
|
||||
when writing the tests or alternatively the ``sequential`` keyword.
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
There are several configuration properties for the TestKit module, please refer
|
||||
to the :ref:`reference configuration <config-akka-testkit>`.
|
||||
|
||||
|
|
|
|||
|
|
@ -121,3 +121,9 @@ You can create a ``Req`` connection through the::
|
|||
|
||||
More documentation and examples will follow soon.
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
There are several configuration properties for the zeromq module, please refer
|
||||
to the :ref:`reference configuration <config-akka-zeromq>`.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue