Interface LoadRequestHandler

All Known Implementing Classes:
WorldLoadHandler

public interface LoadRequestHandler
The handler that the content loading thread pool will call to load a specific request.

Request handlers provide the implementation of the content type that will perform content-specific loading. For example, script loading will be different to texture loading, thus require different implementations of this interface.

Implementation Requirements

As this class is being dumped into the middle of an explicitly multithreaded environment, then the implementation must be able to handle that. Either a new instance can be created for each load requested, or a single shared instance can be used but must be re-entrant.

Version:
$Revision: 1.1 $
Author:
Justin Couch