=htp address review feedback on JSON streaming

This commit is contained in:
Konrad Malawski 2016-07-29 16:29:50 +02:00
parent bc536be32c
commit 6562ddd2df
13 changed files with 114 additions and 22 deletions

View file

@ -3,7 +3,7 @@
Source Streaming
================
Akka HTTP supports completing a request with an Akka ``Source<T, ?>``, which makes it possible to very easily build
Akka HTTP supports completing a request with an Akka ``Source<T, ?>``, which makes it possible to easily build
streaming end-to-end APIs which apply back-pressure throughout the entire stack.
It is possible to complete requests with raw ``Source<ByteString, ?>``, however often it is more convenient to

View file

@ -25,7 +25,7 @@ lies in interfacing between private sphere and the public, but you dont want
that many doors inside your house, do you? For a longer discussion see `this
blog post <http://letitcrash.com/post/19074284309/when-to-use-typedactors>`_.
A bit more background: TypedActors can very easily be abused as RPC, and that
A bit more background: TypedActors can easily be abused as RPC, and that
is an abstraction which is `well-known
<http://doc.akka.io/docs/misc/smli_tr-94-29.pdf>`_
to be leaky. Hence TypedActors are not what we think of first when we talk