Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
This interface provides accessors to the platform specific tile file downloading
Engine.OnlineTitleFileInterface
Delegates Summary | ||
---|---|---|
![]() | OnReadTitleFileComplete (bool bWasSuccessful, tring FileName) |
Functions Summary | ||
---|---|---|
![]() | AddReadTitleFileCompleteDelegate (delegate<OnReadTitleFileComplete> ReadTitleFileCompleteDelegate) | |
![]() | bool | ClearDownloadedFile (string FileName) |
![]() | bool | ClearDownloadedFiles () |
![]() | ClearReadTitleFileCompleteDelegate (delegate<OnReadTitleFileComplete> ReadTitleFileCompleteDelegate) | |
![]() | bool | GetTitleFileContents (string FileName, ut array<byte> FileContents) |
![]() | EOnlineEnumerationReadState | GetTitleFileState (string FileName) |
![]() | bool | ReadTitleFile (string FileToRead) |
Delegates Detail |
---|
Delegate fired when a file read from the network platform's title specific storage is complete
@param bWasSuccessful whether the file read was successful or not
@param FileName the name of the file this was for
Functions Detail |
---|
Adds the delegate to the list to be notified when a requested file has been read
@param ReadTitleFileCompleteDelegate the delegate to add
Empties the cached data for this file if it is not being downloaded currently
@param FileName the name of the file to remove from the cache
@return true if it could be deleted, false if it could not
Empties the set of downloaded files if possible (no async tasks outstanding)
@return true if they could be deleted, false if they could not
Removes the delegate from the notify list
@param ReadTitleFileCompleteDelegate the delegate to remove
Copies the file data into the specified buffer for the specified file
@param FileName the name of the file to read
@param FileContents the out buffer to copy the data into
@return true if the data was copied, false otherwise
Determines the async state of the tile file read operation
@param FileName the name of the file to check on
@return the async state of the file read
Starts an asynchronous read of the specified file from the network platform's title specific file store
@param FileToRead the name of the file to read
@return true if the calls starts successfully, false otherwise
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |