virtual bool LoadSharedObject(const String& name, const String& localPath, SharedObjectVisitor* psobj, FileOpenerBase* pfo) = 0;
LoadSharedObject loads shared object data saved from some source. The implementation of SharedObjectManagerBase defines the data source. Reading of object data occurs from ActionScript when SharedObject.getLocal method is invoked.
Parameters |
Description |
const String& name |
Name of the shared object. |
const String& localPath |
Relative location of the shared object data. |
SharedObjectVisitor* psobj |
Pointer to SharedObjectVisitor for reading the shared data. |
FileOpenerBase* pfo |
Pointer to FileOpenerBase for opening the shared data. |
A Boolean value of true if the shared data is loaded successfully; otherwise false.