Uh...here you go, just a schema, this won't even compile:
Let nc be your NetConnection instance.
//handler for "destroyRoom button" client side
{
nc.call("kickEveryone");
}
//server method
public void kickEveryone(){
IConnection conn= Red5.getConnectionLocal();
IScope scope=conn.getScope();
Iterator<IConnection> it = scope.getConnections();
while (it.hasNext()) {
IConnection conn2 = it.next();
conn2.close();
}
}
}
On 7/4/07, vikramchhetryy <[EMAIL PROTECTED]> wrote:
I am already running 5 days late in my project.
Could you please give me code for this.
Or direct me to someone who has done this before.
Really thankful for your replies,
Regards,
Vikram
--
View this message in context:
http://www.nabble.com/multiple-Video-conference-simultaneously-tf3994414.html#a11433605
Sent from the Red5 - English mailing list archive at Nabble.com.
_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org
--
-------------------------------------------------------------------
If a man speaks in a forest and his wife is not there, is he still wrong?
_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org