GOG GALAXY SDK Documentation
|
Listener for the event of downloading a list of files stored in cloud storage. More...
#include <ICloudStorage.h>
Public Types | |
enum | FailureReason { FAILURE_REASON_UNDEFINED , FAILURE_REASON_UNAUTHORIZED , FAILURE_REASON_FORBIDDEN , FAILURE_REASON_NOT_FOUND , FAILURE_REASON_UNAVAILABLE , FAILURE_REASON_ABORTED , FAILURE_REASON_CONNECTION_FAILURE } |
The reason of a failure in downloading a list of files. More... | |
Public Member Functions | |
virtual void | OnGetFileListSuccess (uint32_t fileCount, uint32_t quota, uint32_t quotaUsed)=0 |
Notification for the event of a success in downloading a list of files. More... | |
virtual void | OnGetFileListFailure (FailureReason failureReason)=0 |
Notification for the event of a failure in downloading a list of files. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from GalaxyTypeAwareListener< CLOUD_STORAGE_GET_FILE_LIST > | |
static ListenerType | GetListenerType () |
Returns the type of the listener. More... | |
Listener for the event of downloading a list of files stored in cloud storage.
enum FailureReason |
The reason of a failure in downloading a list of files.
|
pure virtual |
Notification for the event of a failure in downloading a list of files.
[in] | failureReason | The cause of the failure. |
|
pure virtual |
Notification for the event of a success in downloading a list of files.
In order to read info on subsequent files call ICloudStorage::GetFile*ByIndex().
[in] | fileCount | File count on the list. |
[in] | quota | Total quota bytes. |
[in] | quotaUsed | Used quota. |