From 3051928c9dfefca11e6a6c2952ce7767222694db Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Sun, 29 Sep 2019 19:47:02 +0200 Subject: [PATCH] more cross-links to Classic docs, #24717 --- akka-docs/src/main/paradox/typed/actor-discovery.md | 4 ++++ akka-docs/src/main/paradox/typed/actor-lifecycle.md | 4 ++++ akka-docs/src/main/paradox/typed/actors.md | 4 ++++ akka-docs/src/main/paradox/typed/cluster-sharding.md | 4 +--- akka-docs/src/main/paradox/typed/cluster-singleton.md | 2 -- akka-docs/src/main/paradox/typed/cluster.md | 2 -- akka-docs/src/main/paradox/typed/dispatchers.md | 2 -- akka-docs/src/main/paradox/typed/distributed-data.md | 2 -- akka-docs/src/main/paradox/typed/fault-tolerance.md | 2 -- akka-docs/src/main/paradox/typed/fsm.md | 2 -- akka-docs/src/main/paradox/typed/interaction-patterns.md | 4 ++++ akka-docs/src/main/paradox/typed/logging.md | 4 ++++ akka-docs/src/main/paradox/typed/mailboxes.md | 2 -- akka-docs/src/main/paradox/typed/persistence-snapshot.md | 4 ++++ akka-docs/src/main/paradox/typed/persistence.md | 2 -- akka-docs/src/main/paradox/typed/routers.md | 4 ++++ akka-docs/src/main/paradox/typed/stash.md | 4 ++++ akka-docs/src/main/paradox/typed/testing-async.md | 4 ++++ akka-docs/src/main/paradox/typed/testing-sync.md | 4 ++++ akka-docs/src/main/paradox/typed/testing.md | 2 -- 20 files changed, 41 insertions(+), 21 deletions(-) diff --git a/akka-docs/src/main/paradox/typed/actor-discovery.md b/akka-docs/src/main/paradox/typed/actor-discovery.md index e68d1f3dcf..22e00be8fa 100644 --- a/akka-docs/src/main/paradox/typed/actor-discovery.md +++ b/akka-docs/src/main/paradox/typed/actor-discovery.md @@ -1,5 +1,9 @@ # Actor discovery +@@@ note +For the Akka Classic documentation of this feature see @ref:[Classic Actors](../actors.md#actorselection). +@@@ + ## Dependency To use Akka Actor Typed, you must add the following dependency in your project: diff --git a/akka-docs/src/main/paradox/typed/actor-lifecycle.md b/akka-docs/src/main/paradox/typed/actor-lifecycle.md index 90eb0e7b8c..aea9eca2b9 100644 --- a/akka-docs/src/main/paradox/typed/actor-lifecycle.md +++ b/akka-docs/src/main/paradox/typed/actor-lifecycle.md @@ -1,5 +1,9 @@ # Actor lifecycle +@@@ note +For the Akka Classic documentation of this feature see @ref:[Classic Actors](../actors.md). +@@@ + ## Dependency To use Akka Actor Typed, you must add the following dependency in your project: diff --git a/akka-docs/src/main/paradox/typed/actors.md b/akka-docs/src/main/paradox/typed/actors.md index 6c7f5efd56..4cc7a69cbd 100644 --- a/akka-docs/src/main/paradox/typed/actors.md +++ b/akka-docs/src/main/paradox/typed/actors.md @@ -1,5 +1,9 @@ # Introduction to Actors +@@@ note +For the Akka Classic documentation of this feature see @ref:[Classic Actors](../actors.md). +@@@ + ## Dependency To use Akka Actor Typed, you must add the following dependency in your project: diff --git a/akka-docs/src/main/paradox/typed/cluster-sharding.md b/akka-docs/src/main/paradox/typed/cluster-sharding.md index 700ed8d286..74cb4cab89 100644 --- a/akka-docs/src/main/paradox/typed/cluster-sharding.md +++ b/akka-docs/src/main/paradox/typed/cluster-sharding.md @@ -1,9 +1,7 @@ # Cluster Sharding @@@ note - -For the Akka Classic API see @ref:[Classic Cluster Sharding](../cluster-sharding.md) - +For the Akka Classic documentation of this feature see @ref:[Classic Cluster Sharding](../cluster-sharding.md) @@@ ## Dependency diff --git a/akka-docs/src/main/paradox/typed/cluster-singleton.md b/akka-docs/src/main/paradox/typed/cluster-singleton.md index 23aac5b7ed..ece14fce0b 100644 --- a/akka-docs/src/main/paradox/typed/cluster-singleton.md +++ b/akka-docs/src/main/paradox/typed/cluster-singleton.md @@ -1,9 +1,7 @@ # Cluster Singleton @@@ note - For the Akka Classic documentation of this feature see @ref:[Classic Cluster Singleton](../cluster-singleton.md). - @@@ ## Dependency diff --git a/akka-docs/src/main/paradox/typed/cluster.md b/akka-docs/src/main/paradox/typed/cluster.md index 211f77c0b6..dec9af7ce8 100644 --- a/akka-docs/src/main/paradox/typed/cluster.md +++ b/akka-docs/src/main/paradox/typed/cluster.md @@ -11,9 +11,7 @@ For specific documentation topics see: * @ref:[Operating, Managing, Observability](../additional/operations.md) @@@ 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. diff --git a/akka-docs/src/main/paradox/typed/dispatchers.md b/akka-docs/src/main/paradox/typed/dispatchers.md index 1d99ba634e..84637726ca 100644 --- a/akka-docs/src/main/paradox/typed/dispatchers.md +++ b/akka-docs/src/main/paradox/typed/dispatchers.md @@ -1,9 +1,7 @@ # Dispatchers @@@ note - For the Akka Classic documentation of this feature see @ref:[Classic Dispatchers](../dispatchers.md). - @@@ ## Dependency diff --git a/akka-docs/src/main/paradox/typed/distributed-data.md b/akka-docs/src/main/paradox/typed/distributed-data.md index efbb35ce4f..dc72da7128 100644 --- a/akka-docs/src/main/paradox/typed/distributed-data.md +++ b/akka-docs/src/main/paradox/typed/distributed-data.md @@ -1,9 +1,7 @@ # Distributed Data @@@ note - For the Akka Classic documentation of this feature see @ref:[Classic Distributed Data](../distributed-data.md). - @@@ ## Dependency diff --git a/akka-docs/src/main/paradox/typed/fault-tolerance.md b/akka-docs/src/main/paradox/typed/fault-tolerance.md index b10c7fd586..f3a1dc631b 100644 --- a/akka-docs/src/main/paradox/typed/fault-tolerance.md +++ b/akka-docs/src/main/paradox/typed/fault-tolerance.md @@ -1,9 +1,7 @@ # 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 diff --git a/akka-docs/src/main/paradox/typed/fsm.md b/akka-docs/src/main/paradox/typed/fsm.md index c6588850bf..e18319cf38 100644 --- a/akka-docs/src/main/paradox/typed/fsm.md +++ b/akka-docs/src/main/paradox/typed/fsm.md @@ -1,9 +1,7 @@ # 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). diff --git a/akka-docs/src/main/paradox/typed/interaction-patterns.md b/akka-docs/src/main/paradox/typed/interaction-patterns.md index e2b3f1b0da..76d72a21d8 100644 --- a/akka-docs/src/main/paradox/typed/interaction-patterns.md +++ b/akka-docs/src/main/paradox/typed/interaction-patterns.md @@ -1,5 +1,9 @@ # Interaction Patterns +@@@ note +For the Akka Classic documentation of this feature see @ref:[Classic Actors](../actors.md). +@@@ + ## Dependency To use Akka Actor Typed, you must add the following dependency in your project: diff --git a/akka-docs/src/main/paradox/typed/logging.md b/akka-docs/src/main/paradox/typed/logging.md index 77358f3358..7fda46448f 100644 --- a/akka-docs/src/main/paradox/typed/logging.md +++ b/akka-docs/src/main/paradox/typed/logging.md @@ -1,5 +1,9 @@ # Logging +@@@ note +For the Akka Classic documentation of this feature see @ref:[Classic Logging](../logging.md). +@@@ + ## Dependency To use Logging, you must at least use the Akka actors dependency in your project, and configure logging diff --git a/akka-docs/src/main/paradox/typed/mailboxes.md b/akka-docs/src/main/paradox/typed/mailboxes.md index 4cddaa7366..19f99934aa 100644 --- a/akka-docs/src/main/paradox/typed/mailboxes.md +++ b/akka-docs/src/main/paradox/typed/mailboxes.md @@ -1,9 +1,7 @@ # Mailboxes @@@ note - For the Akka Classic documentation of this feature see @ref:[Classic Mailboxes](../mailboxes.md). - @@@ ## Dependency diff --git a/akka-docs/src/main/paradox/typed/persistence-snapshot.md b/akka-docs/src/main/paradox/typed/persistence-snapshot.md index a2adc27577..4105774b44 100644 --- a/akka-docs/src/main/paradox/typed/persistence-snapshot.md +++ b/akka-docs/src/main/paradox/typed/persistence-snapshot.md @@ -1,5 +1,9 @@ # Snapshotting +@@@ note +For the Akka Classic documentation of this feature see @ref:[Classic Akka Persistence](../persistence.md). +@@@ + ## Snapshots As you model your domain using @ref:[event sourced actors](persistence.md), you may notice that some actors may be diff --git a/akka-docs/src/main/paradox/typed/persistence.md b/akka-docs/src/main/paradox/typed/persistence.md index 85736a03ef..adaa600087 100644 --- a/akka-docs/src/main/paradox/typed/persistence.md +++ b/akka-docs/src/main/paradox/typed/persistence.md @@ -13,9 +13,7 @@ @@@ @@@ note - For the Akka Classic documentation of this feature see @ref:[Classic Akka Persistence](../persistence.md). - @@@ ## Dependency diff --git a/akka-docs/src/main/paradox/typed/routers.md b/akka-docs/src/main/paradox/typed/routers.md index 0aec247bd1..3f92576e32 100644 --- a/akka-docs/src/main/paradox/typed/routers.md +++ b/akka-docs/src/main/paradox/typed/routers.md @@ -1,5 +1,9 @@ # Routers +@@@ note +For the Akka Classic documentation of this feature see @ref:[Classic Routing](../routing.md). +@@@ + ## Dependency To use Akka Actor Typed, you must add the following dependency in your project: diff --git a/akka-docs/src/main/paradox/typed/stash.md b/akka-docs/src/main/paradox/typed/stash.md index e33880a3ca..04f2996e76 100644 --- a/akka-docs/src/main/paradox/typed/stash.md +++ b/akka-docs/src/main/paradox/typed/stash.md @@ -1,5 +1,9 @@ # Stash +@@@ note +For the Akka Classic documentation of this feature see @ref:[Classic Actors](../actors.md#stash). +@@@ + ## Dependency To use Akka Actor Typed, you must add the following dependency in your project: diff --git a/akka-docs/src/main/paradox/typed/testing-async.md b/akka-docs/src/main/paradox/typed/testing-async.md index b667971636..c4af5aaa85 100644 --- a/akka-docs/src/main/paradox/typed/testing-async.md +++ b/akka-docs/src/main/paradox/typed/testing-async.md @@ -1,5 +1,9 @@ ## Asynchronous testing +@@@ note +For the Akka Classic documentation of this feature see @ref:[Classic Testing](../testing.md). +@@@ + Asynchronous testing uses a real @apidoc[akka.actor.typed.ActorSystem] that allows you to test your Actors in a more realistic environment. The minimal setup consists of the test procedure, which provides the desired stimuli, the actor under test, diff --git a/akka-docs/src/main/paradox/typed/testing-sync.md b/akka-docs/src/main/paradox/typed/testing-sync.md index 2de4ba7af4..303dd301ad 100644 --- a/akka-docs/src/main/paradox/typed/testing-sync.md +++ b/akka-docs/src/main/paradox/typed/testing-sync.md @@ -1,5 +1,9 @@ ## Synchronous behavior testing +@@@ note +For the Akka Classic documentation of this feature see @ref:[Classic Testing](../testing.md). +@@@ + The `BehaviorTestKit` provides a very nice way of unit testing a `Behavior` in a deterministic way, but it has some limitations to be aware of. diff --git a/akka-docs/src/main/paradox/typed/testing.md b/akka-docs/src/main/paradox/typed/testing.md index 567dec1213..7a9e0602fc 100644 --- a/akka-docs/src/main/paradox/typed/testing.md +++ b/akka-docs/src/main/paradox/typed/testing.md @@ -1,9 +1,7 @@ # Testing @@@ note - For the Akka Classic documentation of this feature see @ref:[Classic Testing](../testing.md). - @@@ ## Dependency