The net.guttershark.preloading.worker package contains worker classes that implement loading of different types of assets. These classes are base classes used with a PreloadingController.
Interfaces
| | Interface | Description |
| | ILoadWorker |
The ILoadWorker interface creates the contract for objects that are implementing
the worker pattern for preloading. |
Classes
| | Class | Description |
| | BitmapWorker |
The BitmapWorker class is the worker that loads all
assets that are considered bitmap files. |
| | ProgressiveFLVWorker |
The ProgressiveFLVWorker class is the worker that loads all
progressive flv files. |
| | SoundWorker |
The SoundWorker class is the worker loads all
sound files. |
| | SWFWorker |
The SWFWorker class is the worker that loads all
swf files. |
| | Worker |
The Worker class is a generic worker that implements base logic for loading
an Asset. |
| | WorkerInstances |
The WorkerInstances class is an instance factory that returns instances
of workers based on a filetype being loaded. |
| | XMLWorker |
The XMLWorker class is the worker that loads all
xml files. |