[akka-user] Re: Akka Java TCP client , Sink.ignore()

2016-08-01 Thread murtuza chhil
Thanks for the clarification Konrad. I kind of figured it was a NoOp sink, but wasn't sure if there would be any side effects due to lack of knowledge. For now my baby step simply wants to connect. As I move forward the Sink.ignore will get replaced by a sink that handles the responses. My probl

[akka-user] Re: Akka Java TCP client , Sink.ignore()

2016-08-01 Thread Johan Andrén
Hi Chhil, If you do not care about any incoming data from the TCP server Sink.ignore should be fine (it will accept but discard any data from the server). -- Johan Akka Team On Friday, July 29, 2016 at 12:48:52 PM UTC+2, murtuza chhil wrote: > > > Hi, > > I am an Akka newbie trying to get my he