Conforms to NSObject
Declared in KiiUploadTransferManaging.h

Overview

A protocol to manage status of resumable upload.

Tasks

Instance Methods

getUploadEntries:

Upload entries are stored with identifier of KiiUser who execute the upload. This API get existing upload entries initiated by current logged in user. If no user logged in, lists upload entries initiated by anonymous user. By default anonymous user can not upload object body unless configure object ACL explicitly. Refer to KiiACL about the details of ACL. This is blocking method.

- (nullable NSArray *)getUploadEntries:(NSError *_Nullable *_Nullable)error

Parameters

error

used to return an error by reference (pass NULL if this is not desired). It is recommended to set an actual error object to get the error information.

Return Value

NSArray Upload entries array.

Discussion

Upload entries are stored with identifier of KiiUser who execute the upload. This API get existing upload entries initiated by current logged in user. If no user logged in, lists upload entries initiated by anonymous user. By default anonymous user can not upload object body unless configure object ACL explicitly. Refer to KiiACL about the details of ACL. This is blocking method.

Entry Life cycle: The entry will be created on calling [KiiRTransfer transferWithProgressBlock:andError:] and deleted on completion/termination of upload.

Declared In

KiiUploadTransferManaging.h