home *** CD-ROM | disk | FTP | other *** search
- package mx.controls.videoClasses
- {
- import flash.net.NetConnection;
- import mx.core.mx_internal;
-
- use namespace mx_internal;
-
- public class NCManagerConnectClient
- {
- mx_internal static const VERSION:String = "3.5.0.12683";
-
- public var connIndex:uint;
-
- public var owner:NCManager;
-
- public var pending:Boolean;
-
- public var netConnection:NetConnection;
-
- public function NCManagerConnectClient(param1:NetConnection, param2:NCManager = null, param3:uint = 0)
- {
- super();
- this.owner = param2;
- this.netConnection = param1;
- this.connIndex = param3;
- this.pending = false;
- }
-
- public function onPlayStatus(... rest) : void
- {
- }
-
- public function onMetaData(... rest) : void
- {
- }
-
- public function onBWCheck(... rest) : uint
- {
- return ++owner.payload;
- }
-
- public function onBWDone(... rest) : void
- {
- var _loc2_:Number = NaN;
- if(rest.length > 0)
- {
- _loc2_ = Number(rest[0]);
- }
- owner.onConnected(netConnection,_loc2_);
- }
-
- public function close() : void
- {
- }
- }
- }
-
-