mkuklis / phonegap-websocket

Websocket PhoneGap plugin for Android
203 stars 75 forks source link

Support multiple simultaneous WebSocket connections. #20

Closed fancycode closed 11 years ago

fancycode commented 11 years ago

The WebSocket plugin keeps a map of active clients and purges them on "close".

fancycode commented 11 years ago

The variables have been renamed. Any particular reason for wanting to use something other than a number as the id? Currently it's guaranteed to be unique and the number range of JS should be large enough for this use case.

mkuklis commented 11 years ago

@fancycode thank you! You are right. Lets just keep a simple counter. Cheers!