Merge pull request #26270 from akka/exampleProjectLinks

Fix dead links to samples
This commit is contained in:
Patrik Nordwall 2019-01-29 09:18:03 +01:00 committed by GitHub
commit 2c531f0422
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 18 deletions

View file

@ -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.
<a id="camel-examples"></a>
## 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

View file

@ -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

View file

@ -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