joining multiple namespaces?
is it somehow possible to join multiple namespaces?
€dit: at the same time i wondered (if you can join multiple) - how you can emit to the specific one then?
Not at the moment, right now it only accepts messages from the namespace it's currently connected to.
Is this possible with the JavaScript client? If so I can add that feature here.
on the js client I can connect to multiple namespaces and then directly emit into every namespace like this:
var fooNsp = io.connect('/foo');
var barNsp = io.connect('/bar');
fooNsp.emit('some event', someData);
barNsp.emit('another event', someOtherData);
something like this for the iOS client would be nice :)
Those are actually 2 different socket clients. io is just the manager.
Because I'm trying to do this with one client, and it's getting confusing.