Mention types and composability for Streams

This commit is contained in:
Arnout Engelen 2017-04-03 16:58:43 +02:00
parent 19316bd4bc
commit fb45b7d10d

View file

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