Sha256: 7bb2ab9622bd75f421c1db38d5c68c741e8cc99a40827d7f06490bdc39e670b0
Contents?: true
Size: 1.56 KB
Versions: 2
Compression:
Stored size: 1.56 KB
Contents
/************************************************************************* * * ADOBE SYSTEMS INCORPORATED * Copyright 2004-2008 Adobe Systems Incorporated * All Rights Reserved. * * NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the * terms of the Adobe license agreement accompanying it. If you have received this file from a * source other than Adobe, then your use, modification, or distribution of it requires the prior * written permission of Adobe. * **************************************************************************/ package fl.video { import flash.net.NetConnection; use namespace flvplayback_internal; /** * <p>Holds client-side functions for remote procedure calls (rpc) * from the FMS during initial connection for <code>NCManager2</code>. * One of these objects is created and passed to the <code>NetConnection.client</code> * property.</p> * * @private * * @langversion 3.0 * @playerversion Flash 9.0.28.0 */ public class ConnectClientNative extends ConnectClient { public function ConnectClientNative(owner:NCManager, nc:NetConnection, connIndex:uint=0) { super(owner, nc, connIndex); } public function _onbwdone(...rest):void { var p_bw:Number; if (rest.length > 1) p_bw = rest[1]; //ifdef DEBUG //owner.debugTrace("ConnectClient.onBWDone(" + p_bw + ")"); //endif owner.onConnected(nc, p_bw); } public function _onbwcheck(... rest):* { return (rest.length > 1 ? rest[1] : 0); } } // class ConnectClient } // package fl.video
Version data entries
2 entries across 2 versions & 1 rubygems