Interface ProxyLoader
access this type via: pal.ProxyLoader (provides, requires or uses)
This API is used together with Assembly to describe a proxy loader instance. When switching to a new composition, the Assembly component can delegate the loading of particular components to a proxy loader, instead of loading them directly. Such proxy loaders must implement this API.
Functions
ProxyInstance loadProxy(char proxyComponent[], char tag[], char parameters[])
void unloadProxy(
IDC com, char proxyComponent[], char tag[], char parameters[])
ProxyInstance loadProxy(char proxyComponent[], char tag[], char parameters[])
This function should load a proxy component, parameterised by the given parameters. These parameters come from the composition string, and are controlled by the caller of the Assembly interface when adding proxies.
void unloadProxy(
IDC com, char proxyComponent[], char tag[], char parameters[])
This function should unload a proxy component (e.g. doing any proxy-specific cleanup).