[akka-user] Re: Chunked response with akka-http 10.x

2017-04-20 Thread Thibault Meyer
Thanks for your responses. It working very well ! Le jeudi 20 avril 2017 12:02:53 UTC+2, Johannes Rudolph a écrit : > > Hi Thibault, > > if you have the body of the response already as a Source, > you can create a response with a chunked entity from it like this: > >

[akka-user] Re: Chunked response with akka-http 10.x

2017-04-20 Thread Thibault Meyer
Hi, thanks for your response. It working very well ! Le jeudi 20 avril 2017 12:02:53 UTC+2, Johannes Rudolph a écrit : > > Hi Thibault, > > if you have the body of the response already as a Source, > you can create a response with a chunked entity from it like this: > >

[akka-user] Re: Chunked response with akka-http 10.x

2017-04-20 Thread 'Johannes Rudolph' via Akka User List
Hi Thibault, if you have the body of the response already as a Source, you can create a response with a chunked entity from it like this: HttpResponse.create() .withEntity(HttpEntities.create(contentType, source)) Johannes On Thursday, April 20, 2017 at 9:56:47 AM UTC+2,