Hello I am trying to implement a lower level TCP server using Akka. What I mean is when the server receives bytes it should be able to make decisions on the number of bytes received or the byte itself (like determine if its end of the message etc this could depend on the protocol definition).
Currently, I am using TcpManager to bind to the port ActorRef tcpManager = Tcp.get(getSystem()).manager(); tcpManager.tell(TcpMessage.bind(getSelf(), new InetSocketAddress(. . . .), backlog), getSelf()); and expecting messages/bytes in the actor which is registered as a listener, and reading bytes using akka.io.Tcp.Received.data() another question is what are the possibilities that the message/bytes read by Akka framework are partial or incomplete ? Thanks, Vinay -- >>>>>>>>>> Read the docs: http://akka.io/docs/ >>>>>>>>>> Check the FAQ: >>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html >>>>>>>>>> Search the archives: https://groups.google.com/group/akka-user --- You received this message because you are subscribed to the Google Groups "Akka User List" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/akka-user. For more options, visit https://groups.google.com/d/optout.
