[akka-user] Re: XMPP chat server vs Akka TCP

2017-03-02 Thread livetouch
messages should be sent over the wire. > > Fwiw it seems that XMPP in fact supports different kinds of transport > protocols: > https://en.wikipedia.org/wiki/XMPP#XMPP_via_HTTP_and_WebSocket_transports > > Cheers, > Johannes > > On Thursday, February 23, 2017 at 3:59:20 PM

[akka-user] XMPP chat server vs Akka TCP

2017-02-23 Thread livetouch
Hi, I have to develop a chat web application + android/ios clients. I did a sample using Akka Actors, using Akka TCP. So I have an TCPUserActor that receives the connection, and after that I have some UserActor for each user in the application. But I friend told me that chat applications uses

Re: [akka-user] Android chat

2016-03-15 Thread livetouch
Thanks, I´ll try it. On Friday, March 11, 2016 at 10:29:34 AM UTC-3, Akka Team wrote: > > Hi, > > To notice that you lost contact with the other end of a TCP socket you > have to read or write the socket, this is probably best achieved by > providing some type of heartbeat in your own protocol.

[akka-user] Android chat

2016-03-08 Thread livetouch
Hi all, I am using Akka to create a chat application. I start the TCP socket using StartTcpConnectionActor and after a new connnetion is established I start the TcpConnectionActor for each connnection. My android client, uses the Socket class to connect to the server and everything works ok.