| Package | com.acleveraddress.net.multi_loader |
| Class | public class MultiLoaderManager |
| Inheritance | MultiLoaderManager AbstractMultiLoaderManager |
See also
| Property | Defined by | ||
|---|---|---|---|
| _loaders : Dictionary [static]
| MultiLoaderManager | ||
| loaders : Dictionary [static][read-only]
| MultiLoaderManager | ||
| _loadersLength : uint [static]
| MultiLoaderManager | ||
| loadersLength : uint [static][read-only]
| MultiLoaderManager | ||
| Method | Defined by | ||
|---|---|---|---|
|
bytesLoaded(loader:MultiLoader):Number
[static]
| MultiLoaderManager | ||
|
bytesTotal(loader:MultiLoader):Number
[static]
| MultiLoaderManager | ||
|
dispose():void
| MultiLoaderManager | ||
|
failedItems(loader:MultiLoader):Array
[static]
| MultiLoaderManager | ||
|
loadedItems(loader:MultiLoader):Array
[static]
| MultiLoaderManager | ||
|
loadingItems(loader:MultiLoader):Array
[static]
| MultiLoaderManager | ||
|
pendingItems(loader:MultiLoader):Array
[static]
| MultiLoaderManager | ||
|
ratioLoaded(loader:MultiLoader):Number
[static]
The ratio loaded is an overall percentage of what has loaded, acting as if
every item is the same size, so if 6 out of 10 items have loaded then
this will return 60%, even if the remaining 4 items are much larger
| MultiLoaderManager | ||
|
ratioTotal(loader:MultiLoader):Number
[static]
The ratio loaded is an overall percentage of what has loaded, acting as if
every item is the same size, so if 6 out of 10 items have loaded then
this will return 60%, even if the remaining 4 items are much larger
| MultiLoaderManager | ||
|
removeLoader(loader:MultiLoader):void
[static]
| MultiLoaderManager | ||
|
weightLoaded(loader:MultiLoader):Number
[static]
Returns the overall weight loaded for all current loaders
| MultiLoaderManager | ||
|
weightTotal(loader:MultiLoader):Number
[static]
Returns the overall weight total for all current loaders
| MultiLoaderManager | ||
| _loaders | property |
public static var _loaders:Dictionary
| loaders | property |
loaders:Dictionary [read-only]Implementation
public static function get loaders():Dictionary
| _loadersLength | property |
public static var _loadersLength:uint
| loadersLength | property |
loadersLength:uint [read-only]Implementation
public static function get loadersLength():uint
| bytesLoaded | () | method |
public static function bytesLoaded(loader:MultiLoader):NumberParameters
loader:MultiLoader — A MultiLoader instance
|
Number — The total number of bytes loaded so far in the specified loader
|
| bytesTotal | () | method |
public static function bytesTotal(loader:MultiLoader):NumberParameters
loader:MultiLoader — A MultiLoader instance
|
Number — The total number of bytes to be loaded, or 0 if the total is not yet
known (ie not all items have started loading
|
| dispose | () | method |
public function dispose():void
| failedItems | () | method |
public static function failedItems(loader:MultiLoader):ArrayParameters
loader:MultiLoader |
Array — A list of all failed items
|
| loadedItems | () | method |
public static function loadedItems(loader:MultiLoader):ArrayParameters
loader:MultiLoader |
Array — A list of all loaded items
|
| loadingItems | () | method |
public static function loadingItems(loader:MultiLoader):ArrayParameters
loader:MultiLoader |
Array — A list of all loading items
|
| pendingItems | () | method |
public static function pendingItems(loader:MultiLoader):ArrayParameters
loader:MultiLoader |
Array — A list of all pending items
|
| ratioLoaded | () | method |
public static function ratioLoaded(loader:MultiLoader):NumberThe ratio loaded is an overall percentage of what has loaded, acting as if every item is the same size, so if 6 out of 10 items have loaded then this will return 60%, even if the remaining 4 items are much larger
Parametersloader:MultiLoader — A MultiLoader instance
|
Number — The total number of bytes loaded so far
|
| ratioTotal | () | method |
public static function ratioTotal(loader:MultiLoader):NumberThe ratio loaded is an overall percentage of what has loaded, acting as if every item is the same size, so if 6 out of 10 items have loaded then this will return 60%, even if the remaining 4 items are much larger
Parametersloader:MultiLoader — A MultiLoader instance
|
Number — The total expected size of the combined ratios (allItems - failedItems)
|
| removeLoader | () | method |
| weightLoaded | () | method |
public static function weightLoaded(loader:MultiLoader):NumberReturns the overall weight loaded for all current loaders
Parametersloader:MultiLoader — A MultiLoader instance
|
Number — The weight loaded
|
| weightTotal | () | method |
public static function weightTotal(loader:MultiLoader):NumberReturns the overall weight total for all current loaders
Parametersloader:MultiLoader — A MultiLoader instance
|
Number — The weight total
|