| Package | ch.capi.net |
| Interface | public interface ILoadInfo |
| Property | Defined by | ||
|---|---|---|---|
| averageSpeed : Number [read-only]
Defines the average speed since the loading has begun.
| ILoadInfo | ||
| bytesLoaded : uint [read-only]
Defines the bytes that have been loaded.
| ILoadInfo | ||
| bytesRemaining : uint [read-only]
Defines the number of bytes to load.
| ILoadInfo | ||
| bytesTotal : uint [read-only]
Defines the total bytes to load.
| ILoadInfo | ||
| currentSpeed : Number [read-only]
Defines the current speed of the download (kilobytes per seconds).
| ILoadInfo | ||
| elapsedTime : uint [read-only]
Defines the elapsed time since the loading as begun.
| ILoadInfo | ||
| filesError : Array [read-only]
Defines the files that haven't been successfully loaded.
| ILoadInfo | ||
| filesIdle : Array [read-only]
Defines the files that currently not being loaded (waits into the loading queue).
| ILoadInfo | ||
| filesLoading : Array [read-only]
Defines the files that are currently being loaded.
| ILoadInfo | ||
| filesSuccess : Array [read-only]
Defines the files that have been successfully loaded.
| ILoadInfo | ||
| massLoader : IMassLoader
[read-only]
Defines the
IMassLoader source. | ILoadInfo | ||
| percentLoaded : uint [read-only]
Defines the percent of bytes loaded.
| ILoadInfo | ||
| ratioLoaded : Number [read-only]
Defines a Number between 0 and 1 (included) that represents the ratio of the loaded bytes.
| ILoadInfo | ||
| remainingTime : int [read-only]
Defines the remaining time, based on the speed and the bytes that left to be loaded.
| ILoadInfo | ||
| Method | Defined by | ||
|---|---|---|---|
|
reset():void
Reset all the information about the loading.
| ILoadInfo | ||
|
toString():String
Represents the data of the
ILoadInfo into a String. | ILoadInfo | ||
|
update():void
Update the information about the loading.
| ILoadInfo | ||
| averageSpeed | property |
averageSpeed:Number [read-only]Defines the average speed since the loading has begun.
Implementation public function get averageSpeed():Number
| bytesLoaded | property |
bytesLoaded:uint [read-only]Defines the bytes that have been loaded.
Implementation public function get bytesLoaded():uint
| bytesRemaining | property |
bytesRemaining:uint [read-only]Defines the number of bytes to load.
Implementation public function get bytesRemaining():uint
| bytesTotal | property |
bytesTotal:uint [read-only]Defines the total bytes to load.
Implementation public function get bytesTotal():uint
| currentSpeed | property |
currentSpeed:Number [read-only]Defines the current speed of the download (kilobytes per seconds).
Implementation public function get currentSpeed():Number
| elapsedTime | property |
elapsedTime:uint [read-only]Defines the elapsed time since the loading as begun.
Implementation public function get elapsedTime():uint
| filesError | property |
filesError:Array [read-only]Defines the files that haven't been successfully loaded.
Implementation public function get filesError():Array
| filesIdle | property |
filesIdle:Array [read-only]Defines the files that currently not being loaded (waits into the loading queue).
Implementation public function get filesIdle():Array
| filesLoading | property |
filesLoading:Array [read-only]Defines the files that are currently being loaded.
Implementation public function get filesLoading():Array
| filesSuccess | property |
filesSuccess:Array [read-only]Defines the files that have been successfully loaded.
Implementation public function get filesSuccess():Array
| massLoader | property |
massLoader:IMassLoader [read-only]
Defines the IMassLoader source.
public function get massLoader():IMassLoader
| percentLoaded | property |
percentLoaded:uint [read-only]Defines the percent of bytes loaded.
Implementation public function get percentLoaded():uint
See also
| ratioLoaded | property |
ratioLoaded:Number [read-only]Defines a Number between 0 and 1 (included) that represents the ratio of the loaded bytes.
Implementation public function get ratioLoaded():Number
See also
| remainingTime | property |
remainingTime:int [read-only]Defines the remaining time, based on the speed and the bytes that left to be loaded. If the current speed is zero, this value will be -1.
Implementation public function get remainingTime():int
| reset | () | method |
public function reset():voidReset all the information about the loading.
| toString | () | method |
public function toString():String
Represents the data of the ILoadInfo into a String.
String — A String with the useful information.
|
| update | () | method |
public function update():voidUpdate the information about the loading.