public interface EOS_PlayerDataStorage_OnWriteFileDataCallback
extends com.sun.jna.Callback
| Modifier and Type | Method and Description |
|---|---|
EOS_PlayerDataStorage_EWriteResult |
apply(EOS_PlayerDataStorage_WriteFileDataCallbackInfo data,
com.sun.jna.Pointer outDataBuffer,
com.sun.jna.ptr.IntByReference outDataWritten)
Callback for when we are ready to get more data to be written into the requested file.
|
EOS_PlayerDataStorage_EWriteResult apply(EOS_PlayerDataStorage_WriteFileDataCallbackInfo data, com.sun.jna.Pointer outDataBuffer, com.sun.jna.ptr.IntByReference outDataWritten)
data - Struct containing metadata for the file being written to, as well as the max length in bytes that can be safely written to DataBufferoutDataBuffer - A buffer to write data into, to be appended to the end of the file that is being written to. The maximum length of this value is provided in the Info parameter. The number of bytes written to this buffer should be set in OutDataWritten.outDataWritten - The length of the data written to OutDataBuffer. This must be less than or equal than the DataBufferLengthBytes provided in the Info parameterEOS_PlayerDataStorage_EWriteResult.EOS_WR_ContinueWriting, this callback will not be called again for the same request. If this is set to EOS_PlayerDataStorage_EWriteResult.EOS_WR_FailRequest or EOS_PlayerDataStorage_EWriteResult.EOS_WR_CancelRequest, all data written during the request will not be saved