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 Name | Usage Information |
---|---|
EOS_HPlayerDataStorage Handle | |
const EOS_PlayerDataStorage_WriteFileOptions* WriteOptions | Object containing properties related to which user is writing the file, what the file's name is, and related mechanisms for writing the data |
void* ClientData | Optional pointer to help clients track this request, that is returned in associated callbacks |
const EOS_PlayerDataStorage_OnWriteFileCompleteCallback CompletionCallback | This 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 Name | Usage Information |
---|---|
const EOS_PlayerDataStorage_WriteFileCallbackInfo* Data |