home *** CD-ROM | disk | FTP | other *** search
/ Computer Active 2010 August / CA08.iso / Multimedija / shufflr.air / ShufflrClient.swf / scripts / mx / controls / videoClasses / INCManager.as next >
Encoding:
Text File  |  2010-06-23  |  965 b   |  41 lines

  1. package mx.controls.videoClasses
  2. {
  3.    import flash.net.NetConnection;
  4.    
  5.    public interface INCManager
  6.    {
  7.       function get timeout() : uint;
  8.       
  9.       function set timeout(param1:uint) : void;
  10.       
  11.       function get streamWidth() : Number;
  12.       
  13.       function get streamHeight() : Number;
  14.       
  15.       function connectToURL(param1:String) : Boolean;
  16.       
  17.       function get streamName() : String;
  18.       
  19.       function get streamLength() : Number;
  20.       
  21.       function isRTMP() : Boolean;
  22.       
  23.       function get bitrate() : Number;
  24.       
  25.       function connectAgain() : Boolean;
  26.       
  27.       function reconnect() : void;
  28.       
  29.       function set videoPlayer(param1:VideoPlayer) : void;
  30.       
  31.       function set bitrate(param1:Number) : void;
  32.       
  33.       function get netConnection() : NetConnection;
  34.       
  35.       function get videoPlayer() : VideoPlayer;
  36.       
  37.       function close() : void;
  38.    }
  39. }
  40.  
  41.