i'm changing scope with (to join room):
- this.join(client, this.getChildScope(name));

but  IScope.getClients() doesn't work for that room in:

public boolean roomJoin(IClient client, IScope room) {
    Set<IClient> clients = room.getClients();
    for(IClient c:clients) {
       log.info("Client "+c.getAttribute("username")+" in room
"+room.getName());
    }
    return true;
}

room.getClients() doesn't seem to work when 4 clients are connected,
it always returns empty set or null. any ideas/hints?

is this misuse of join() ?

Aljosa Mohorovic

_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to