From fb45b7d10d27c0b0bcf8064ef982d7e0728c8deb Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Mon, 3 Apr 2017 16:58:43 +0200 Subject: [PATCH] Mention types and composability for Streams --- akka-docs-new/src/main/paradox/guide/modules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-docs-new/src/main/paradox/guide/modules.md b/akka-docs-new/src/main/paradox/guide/modules.md index 949e457796..b11955f01c 100644 --- a/akka-docs-new/src/main/paradox/guide/modules.md +++ b/akka-docs-new/src/main/paradox/guide/modules.md @@ -120,7 +120,7 @@ to implement the same pattern over and over. Very common is the scenario where a process a potentially large (or infinite) stream of sequential events and properly coordinate resource usage so that faster processing stages don’t overwhelm slower ones in the chain (or graph). Streams provide a higher-level abstraction on top of actors that simplifies writing such processing networks, handling all the fine details in the -background and providing a safe programming model. Streams is also an implementation +background and providing a safe (typed), composable programming model. Streams is also an implementation of the [Reactive Streams standard](http://www.reactive-streams.org) which enables integration with all 3rd party implementations of that standard.