Cross link also from Typed doc pages to Classic (#27784)

This commit is contained in:
Helena Edelson 2019-09-26 14:36:02 +02:00 committed by GitHub
parent a1949cabdf
commit e8e7ac020f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
20 changed files with 65 additions and 16 deletions

View file

@ -1,7 +1,7 @@
# Classic Cluster Aware Routers
@@include[includes.md](includes.md) { #actor-api }
For the new API see @ref[routers](typed/routers.md).
For the full documentation of this feature and for new projects see @ref:[routers](typed/routers.md).
All @ref:[routers](routing.md) can be made aware of member nodes in the cluster, i.e.
deploying new routees or looking up routees on nodes in the cluster.

View file

@ -1,7 +1,7 @@
# Classic Cluster Sharding
@@include[includes.md](includes.md) { #actor-api }
For the new API see @ref:[Cluster Sharding](typed/cluster-sharding.md).
For the full documentation of this feature and for new projects see @ref:[Cluster Sharding](typed/cluster-sharding.md).
## Dependency

View file

@ -1,7 +1,7 @@
# Classic Cluster Singleton
@@include[includes.md](includes.md) { #actor-api }
For the new API see @ref[cluster-singleton](typed/cluster-singleton.md).
For the full documentation of this feature and for new projects see @ref:[Cluster Singleton](typed/cluster-singleton.md).
## Dependency

View file

@ -1,6 +1,7 @@
# Classic Cluster Usage
This document describes how to use Akka Cluster and the Cluster APIs using code samples.
@@include[includes.md](includes.md) { #actor-api }
For the full documentation of this feature and for new projects see @ref:[Cluster](typed/cluster.md).
For specific documentation topics see:
* @ref:[Cluster Specification](typed/cluster-concepts.md)

View file

@ -1,9 +1,7 @@
# Classic Dispatchers
@@include[includes.md](includes.md) { #actor-api }
For the new API see @ref:[Dispatchers](typed/dispatchers.md).
For more details on advanced dispatcher config and options, see @ref[Dispatchers](typed/dispatchers.md).
For the full documentation of this feature and for new projects see @ref:[Dispatchers](typed/dispatchers.md).
## Dependency

View file

@ -1,7 +1,7 @@
# Classic Distributed Data
@@include[includes.md](includes.md) { #actor-api }
For the new API see @ref:[distributed-data](typed/distributed-data.md).
For the full documentation of this feature and for new projects see @ref:[Distributed Data](typed/distributed-data.md).
## Dependency

View file

@ -1,7 +1,7 @@
# Classic Fault Tolerance
@@include[includes.md](includes.md) { #actor-api }
For the new API see @ref:[fault tolerance](typed/fault-tolerance.md).
For the full documentation of this feature and for new projects see @ref:[fault tolerance](typed/fault-tolerance.md).
## Dependency

View file

@ -1,7 +1,7 @@
# Classic FSM
@@include[includes.md](includes.md) { #actor-api }
For the new API see @ref[fsm](typed/fsm.md).
For the full documentation of this feature and for new projects see @ref:[fsm](typed/fsm.md).
## Dependency

View file

@ -1,7 +1,7 @@
# Classic Mailboxes
@@include[includes.md](includes.md) { #actor-api }
For the new API see @ref:[mailboxes](typed/mailboxes.md).
For the full documentation of this feature and for new projects see @ref:[mailboxes](typed/mailboxes.md).
## Dependency

View file

@ -1,7 +1,7 @@
# Classic Persistence
@@include[includes.md](includes.md) { #actor-api }
For the new API see @ref[persistence](typed/persistence.md).
For the full documentation of this feature and for new projects see @ref:[persistence](typed/persistence.md).
## Dependency

View file

@ -1,7 +1,7 @@
# Classic Routing
@@include[includes.md](includes.md) { #actor-api }
For the new API see @ref[routers](typed/routers.md).
For the full documentation of this feature and for new projects see @ref:[routers](typed/routers.md).
## Dependency

View file

@ -1,5 +1,11 @@
# Cluster Singleton
@@@ note
For the Akka Classic documentation of this feature see @ref:[Classic Cluster Singleton](../cluster-singleton.md).
@@@
## Dependency
To use Cluster Singleton, you must add the following dependency in your project:

View file

@ -12,12 +12,14 @@ For specific documentation topics see:
@@@ note
For the Akka Classic documentation of this feature see @ref:[Classic Cluster](../cluster-usage.md).
@@@
You have to enable @ref:[serialization](../serialization.md) to send messages between ActorSystems in the Cluster.
@ref:[Serialization with Jackson](../serialization-jackson.md) is a good choice in many cases, and our
recommendation if you don't have other preferences or constraints.
@@@
## Dependency
To use Akka Cluster add the following dependency in your project:

View file

@ -1,5 +1,11 @@
# Dispatchers
@@@ note
For the Akka Classic documentation of this feature see @ref:[Classic Dispatchers](../dispatchers.md).
@@@
## Dependency
Dispatchers are part of core Akka, which means that they are part of the akka-actor-typed dependency:

View file

@ -1,5 +1,11 @@
# Distributed Data
@@@ note
For the Akka Classic documentation of this feature see @ref:[Classic Distributed Data](../distributed-data.md).
@@@
## Dependency
To use Akka Cluster Distributed Data Typed, you must add the following dependency in your project:

View file

@ -1,5 +1,11 @@
# Fault Tolerance
@@@ note
For the Akka Classic documentation of this feature see @ref:[Classic Fault Tolerance](../fault-tolerance.md).
@@@
When an actor throws an unexpected exception, a failure, while processing a message or during initialization, the actor
will by default be stopped.

View file

@ -1,5 +1,11 @@
# Behaviors as finite state machines
@@@ note
For the Akka Classic documentation of this feature see @ref:[Classic FSM](../fsm.md).
@@@
An actor can be used to model a Finite State Machine (FSM).
To demonstrate this, consider an actor which shall receive and queue messages while they arrive in a burst and

View file

@ -1,5 +1,11 @@
# Mailboxes
@@@ note
For the Akka Classic documentation of this feature see @ref:[Classic Mailboxes](../mailboxes.md).
@@@
## Dependency
Mailboxes are part of core Akka, which means that they are part of the akka-actor-typed dependency:

View file

@ -11,6 +11,12 @@
@@@
@@@ note
For the Akka Classic documentation of this feature see @ref:[Classic Akka Persistence](../persistence.md).
@@@
## Dependency
To use Akka Persistence Typed, add the module to your project:

View file

@ -1,5 +1,11 @@
# Testing
@@@ note
For the Akka Classic documentation of this feature see @ref:[Classic Testing](../testing.md).
@@@
## Dependency
To use Akka TestKit add the module to your project: