How play backpressures akka http connection flow?

Akka Http is basically a Source[Flow[HttpRequest,HttpResponse],_] and we must join the flow and run the graph.
This akka streams API is lost in play actions and we just return futures, so I guess in some place play is attaching a `.mapAsync(x)(/* our action’s returned future */).
Is this correct?
If it is, the number x is configurable?
If it is not, how play backpressure over akka http connection flow?

Thanks

1 Like