-
-
Save AravindaM/04cbb488faaa9425b279102340a0b2c1 to your computer and use it in GitHub Desktop.
Revisions
-
jarek-przygodzki created this gist
Oct 1, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ import play.api.libs.ws.ahc.AhcWSClient import akka.stream.ActorMaterializer import akka.actor.ActorSystem implicit val system = ActorSystem() implicit val materializer = ActorMaterializer() val ws = AhcWSClient() val req = ws.url("http://example.com").get().map{ resp => resp.body }(system.dispatcher) // after all futures completed... ws.close()