I am trying to make an actor calls a simple GET on rest service. For that I'm using akka-http-experimental_2.11
, and akka-http-jackson-experimental_2.11
. Try as I might I couldn't find a comprehensible java example. The call is to be made async and the response mapped to a POJO.
Can you please help? I'm lost between Sink
s, Flow
s and CompletionStage<HttpResponse>
s.
Thank you java hAkkers :)