From c4d4e97e1945346dade126b023db07cab962d4b3 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Thu, 13 Jul 2017 06:26:49 -0700 Subject: [PATCH] Streams QuickStart title (#23356) --- akka-docs/src/main/paradox/scala/guide/introduction.md | 4 ++-- akka-docs/src/main/paradox/scala/guide/tutorial_1.md | 2 +- akka-docs/src/main/paradox/scala/stream/stream-quickstart.md | 4 +--- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/akka-docs/src/main/paradox/scala/guide/introduction.md b/akka-docs/src/main/paradox/scala/guide/introduction.md index 9a98064a03..1c1c83573f 100644 --- a/akka-docs/src/main/paradox/scala/guide/introduction.md +++ b/akka-docs/src/main/paradox/scala/guide/introduction.md @@ -31,8 +31,8 @@ efficiently. ## How to get started If this is your first experience with Akka, we recommend that you start by -running a simple Hello World project. See the @scala[[QuickStart Guide](http://developer.lightbend.com/guides/akka-quickstart-scala)] @java[[QuickStart Guide](http://developer.lightbend.com/guides/akka-quickstart-java)] for -instructions on downloading and running the Hello World example. The *QuickStart* guide walks you through example code that introduces how to define actor systems, actors, and messages as well as how to use the test module and logging. Within 30 minutes, you should be able to run the Hello World example and learn how it is constructed. +running a simple Hello World project. See the @scala[[Quickstart Guide](http://developer.lightbend.com/guides/akka-quickstart-scala)] @java[[Quickstart Guide](http://developer.lightbend.com/guides/akka-quickstart-java)] for +instructions on downloading and running the Hello World example. The *Quickstart* guide walks you through example code that introduces how to define actor systems, actors, and messages as well as how to use the test module and logging. Within 30 minutes, you should be able to run the Hello World example and learn how it is constructed. This *Getting Started* guide provides the next level of information. It covers why the actor model fits the needs of modern distributed systems and includes a tutorial that will help further your knowledge of Akka. Topics include: diff --git a/akka-docs/src/main/paradox/scala/guide/tutorial_1.md b/akka-docs/src/main/paradox/scala/guide/tutorial_1.md index 295c107dea..ad4db3cd16 100644 --- a/akka-docs/src/main/paradox/scala/guide/tutorial_1.md +++ b/akka-docs/src/main/paradox/scala/guide/tutorial_1.md @@ -7,7 +7,7 @@ Use of Akka relieves you from creating the infrastructure for an actor system an An actor in Akka always belongs to a parent. Typically, you create an actor by calling @java[`getContext().actorOf()`]@scala[`context.actorOf()`]. Rather than creating a "freestanding" actor, this injects the new actor as a child into an already existing tree: the creator actor becomes the _parent_ of the newly created _child_ actor. You might ask then, who is the parent of the _first_ actor you create? -As illustrated below, all actors have a common parent, the user guardian. New actor instances can be created under this actor using `system.actorOf()`. As we covered in the @scala[[QuickStart Guide](https://developer.lightbend.com/guides/akka-quickstart-scala/)]@java[[QuickStart Guide](https://developer.lightbend.com/guides/akka-quickstart-java/)], creation of an actor returns a reference that is a valid URL. So, for example, if we create an actor named `someActor` with `system.actorOf(…, "someActor")`, its reference will include the path `/user/someActor`. +As illustrated below, all actors have a common parent, the user guardian. New actor instances can be created under this actor using `system.actorOf()`. As we covered in the @scala[[Quickstart Guide](https://developer.lightbend.com/guides/akka-quickstart-scala/)]@java[[Quickstart Guide](https://developer.lightbend.com/guides/akka-quickstart-java/)], creation of an actor returns a reference that is a valid URL. So, for example, if we create an actor named `someActor` with `system.actorOf(…, "someActor")`, its reference will include the path `/user/someActor`. ![box diagram of the architecture](diagrams/actor_top_tree.png) diff --git a/akka-docs/src/main/paradox/scala/stream/stream-quickstart.md b/akka-docs/src/main/paradox/scala/stream/stream-quickstart.md index 3caf5564c4..97a495cb31 100644 --- a/akka-docs/src/main/paradox/scala/stream/stream-quickstart.md +++ b/akka-docs/src/main/paradox/scala/stream/stream-quickstart.md @@ -1,6 +1,4 @@ - - -# Quick Start Guide +# Streams Quickstart Guide Create a project and add the akka-streams dependency to the build tool of your choice.