Hey David,

I'll take stab, but there's probably a faster solution...

... in your ApplicationAdapter subclass

@Override
public boolean appJoin( IClient client, IScope scope )
{
   Iterator<IConnection> iter = scope.getConnections();
   while( iter.hasNext() )
   {
       IServiceCapableConnection service = (IServiceCapableConnection)
iter.next();
       service.close();
   }
}

... though i could be totally off the mark.

-todd

On 12/7/06, David Alex Zentner <[EMAIL PROTECTED]> wrote:

Hey guys,

Lets say that you have an RTMP connection open in one browser and you open
a new browser and make a new RTMP connection. How would you detect these
multiple connections and close all but the most recent connection?


-David

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



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

Reply via email to