From 5701f5fd6d24f2473341826ad9f662ef44f4eb29 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Mon, 21 Jan 2019 08:51:34 +0100 Subject: [PATCH] Fix dead links to samples --- akka-docs/src/main/paradox/camel.md | 17 +---------------- .../src/main/paradox/multi-node-testing.md | 2 +- akka-docs/src/main/paradox/persistence.md | 2 +- 3 files changed, 3 insertions(+), 18 deletions(-) diff --git a/akka-docs/src/main/paradox/camel.md b/akka-docs/src/main/paradox/camel.md index 490c9df14b..4a1c60fab9 100644 --- a/akka-docs/src/main/paradox/camel.md +++ b/akka-docs/src/main/paradox/camel.md @@ -386,9 +386,7 @@ to do other work) and resume processing when the response is ready. This is currently the case for a [subset of components](http://camel.apache.org/asynchronous-routing-engine.html) such as the Jetty component. All other Camel components can still be used, but they will cause -allocation of a thread for the duration of an in-out message exchange. There's -also [Examples](#camel-examples) that implements both, an asynchronous -consumer and an asynchronous producer, with the jetty component. +allocation of a thread for the duration of an in-out message exchange. If the used Camel component is blocking it might be necessary to use a separate @ref:[dispatcher](dispatchers.md) for the producer. The Camel processor is @@ -510,19 +508,6 @@ If the actor cannot be found, a `ActorNotRegisteredException` is thrown. *) Before passing the RouteDefinition instance to the route definition handler, akka-camel may make some further modifications to it. - -## Examples - -The sample named @scala[@extref[Akka Camel Samples with Scala](ecs:akka-samples-camel-scala)(@extref[source code](samples:akka-sample-camel-scala))]@java[@extref[Akka Camel Samples with Java](ecs:akka-samples-camel-java)(@extref[source code](samples:akka-sample-camel-java))] -contains 3 samples: - - * Asynchronous routing and transformation - This example demonstrates how to implement consumer and -producer actors that support [Asynchronous routing](#camel-asynchronous-routing) with their Camel endpoints. - * Custom Camel route - Demonstrates the combined usage of a `Producer` and a -`Consumer` actor as well as the inclusion of a custom Camel route. - * 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 diff --git a/akka-docs/src/main/paradox/multi-node-testing.md b/akka-docs/src/main/paradox/multi-node-testing.md index 397e99963b..d287576aa1 100644 --- a/akka-docs/src/main/paradox/multi-node-testing.md +++ b/akka-docs/src/main/paradox/multi-node-testing.md @@ -13,7 +13,7 @@ To use Multi Node Testing, you must add the following dependency in your project ## Sample project You can look at the -@extref[Multi Node example project](samples:akka-samples-multi-node) +@extref[Multi Node example project](samples:akka-samples-multi-node-scala) to see what this looks like in practice. ## Multi Node Testing Concepts diff --git a/akka-docs/src/main/paradox/persistence.md b/akka-docs/src/main/paradox/persistence.md index ccfab685e9..a0b647ae9b 100644 --- a/akka-docs/src/main/paradox/persistence.md +++ b/akka-docs/src/main/paradox/persistence.md @@ -131,7 +131,7 @@ The easiest way to run this example yourself is to download the ready to run @scala[@extref[Akka Persistence Sample with Scala](ecs:akka-samples-persistence-scala)] @java[@extref[Akka Persistence Sample with Java](ecs:akka-samples-persistence-java)] together with the tutorial. It contains instructions on how to run the `PersistentActorExample`. -The source code of this sample can be found in the @scala[@extref[Akka Samples Repository](samples:akka-sample-persistence-scala)]@java[@extref[Akka Samples Repository](samples:akka-sample-persistence-java)]. +The source code of this sample can be found in the @scala[@extref[Akka Samples Repository](samples:akka-samples-persistence-scala)]@java[@extref[Akka Samples Repository](samples:akka-samples-persistence-java)]. @@@ note