EOS_PlayerDataStorage_WriteFile

EOS API reference page for EOS_PlayerDataStorage_WriteFile

3 분 소요

This function is part of the PlayerDataStorage Interface.

Remarks

Write new data to a specific file, potentially overwriting any existing file by the same name, to the cloud. This request will occur asynchronously, potentially over multiple frames. All callbacks for this function will come from the same thread that the SDK is ticked from. If specified, the FileTransferProgressCallback will always be called at least once if the request is started successfully.

Return Value

A valid Player Data Storage File Request handle if successful, or NULL otherwise. Data contained in the completion callback will have more detailed information about issues with the request in failure cases. This handle must be released when it is no longer needed

See Also

EOS_PlayerDataStorageFileTransferRequest_Release

Parameters

EOS_PlayerDataStorage_WriteFile

Parameter Type And NameUsage Information
EOS_HPlayerDataStorage Handle
const EOS_PlayerDataStorage_WriteFileOptions* WriteOptionsObject containing properties related to which user is writing the file, what the file's name is, and related mechanisms for writing the data
void* ClientDataOptional pointer to help clients track this request, that is returned in associated callbacks
const EOS_PlayerDataStorage_OnWriteFileCompleteCallback CompletionCallbackThis function is called when the write operation completes

Callback Function Information

Because this function is asynchronous, it employs a callback of type EOS_PlayerDataStorage_OnWriteFileCompleteCallback to report the results of its operation.

Callback Remarks

Callback for when EOS_PlayerDataStorage_WriteFile completes

Callback Parameters

EOS_PlayerDataStorage_OnWriteFileCompleteCallback

Parameter Type And NameUsage Information
const EOS_PlayerDataStorage_WriteFileCallbackInfo* Data