Class NCResourceUploadListener - Navigine/Indoor-Navigation-iOS-Mobile-SDK-2.0 GitHub Wiki

NCResourceUploadListener provides a callback to be invoked when NCResourceManager will load or fail loading of the user file to the server. The callback is invoked in the UI thread.

Referenced from: NCResourceManager.

@protocol NCResourceUploadListener

- (void)onUploaded;

- (void)onFailed:(nullable NSError *)error;

@end