Hi,
I am starting with Socket IO. So I need create and delete rooms in my chat server.
Is it possible to do it ?
I understand about join,leave and others related commands .
The problem to solve is the requirement that rooms list changes dinamicaly along time execution controled by code. So Is necesary create and delete rooms..
for example I need first
rooms =['room1','room2','room3']
but in other time
rooms =['room1','room4','room5']
So only the clients can access to existing room not others.
Any help?