Re: [akka-user] Does akka streams support a getDataBytes() with context flow?

2016-01-20 Thread Akka Team
Hi John, On Tue, Jan 12, 2016 at 6:12 PM, wrote: > Isn't the following case typical for dealing with Http().superPool(...) flows? > The superPool flow lets me nicely attach context to the HttResponse. > > Now I do not want to materialize the getDataBytes Source right away but pass > it to fla

[akka-user] Does akka streams support a getDataBytes() with context flow?

2016-01-12 Thread john . vieten
Isn't the following case typical for dealing with Http().superPool(...) flows? The superPool flow lets me nicely attach context to the HttResponse. Now I do not want to materialize the getDataBytes Source right away but pass it to flatMapConcat. Like in the following pseudo java code: 1) Flo