top | item 8917132

Native Socket.IO and Android

111 points| Rauchg | 11 years ago |socket.io

12 comments

order
[+] priz3|11 years ago|reply
I've been using Socket.IO on Android for 6+ months now to do real-time communication with our backend, and it works well for our needs. I was happy to see a well-written Android client come along with Socket.IO v1.0. The namespacing functionality makes it super easy to send different messages to different groups of clients.
[+] dkharrat|11 years ago|reply
This is pretty cool.

On a similar note, anyone know of equivalent options for iOS? I see a few open source implementations, but none that are actively developed. There's SocketRocket, but that's just vanilla WebSockets.

[+] SchizoDuckie|11 years ago|reply
Wow.

I've just had a heated debate about this at work. I think it's pretty cool, my colleague thinks it's the worst idea ever.

Does this actually work in the real world? What if i'm moving?

[+] EC1|11 years ago|reply
What are the opposing viewpoints?
[+] Thaxll|11 years ago|reply
Since almost all platforms support Websocket, is it necessary to use Socket.io?
[+] elisee|11 years ago|reply
On top of its transport layer abstraction, socket.io adds various useful features including events, rooms, namespacing, efficient/convenient (de)serialization and network callbacks. I've been using it in websockets-only mode for various projects, because I don't care for slower / less reliable transports but still want the extra features.
[+] jeffasinger|11 years ago|reply
While Websocket has good supports by browsers, it doesn't always handle switching between networks correctly, also, some networks disallow Websockets altogether, or drop websocket connections over HTTP, but not over HTTPS.

Socket.io (especially > 1.0) solves these issues with a layer by having smart reconnection mechanisms and starts by connecting over plain old HTTP longpolling, and upgrades the connection to use websockets if they're available and work.

[+] dj2stein9|11 years ago|reply
It's not. There's an under-appreciated NPM module which is/was shared by Socket.IO that only handles the low-level WebSocket protocol for NodeJS:

https://www.npmjs.com/package/websocket.io

You can use that, and the built-in WebSocket object in modern browsers.

[+] Lord_Zero|11 years ago|reply
So its basically SingalR for Android? Seems like a cool idea to me.
[+] wuliwong|11 years ago|reply
I don't believe so. I believe SignalR is more synonymous with node's implementation of socket.io. This would be like someone getting SignalR to work natively with an Android client.