MMKOfflineCacheDataMoveListener

@protocol MMKOfflineCacheDataMoveListener <NSObject>

Note

This feature is not available in the free MapKit version.

Listener for the information about operations.

Summary

Instance methods

- (void)onDataMoveProgressWithPercent:(NSInteger)percent;
Called when the operation makes progress

- (void)onDataMoveCompleted;
Called when the request is completed

- (void)onDataMoveErrorWithError:(nonnull NSError *)error;
Called when an error occurs

Instance methods

onDataMoveProgressWithPercent:

- (void)onDataMoveProgressWithPercent:(NSInteger)percent;

Called when the operation makes progress. Percent is the rate of completion in the range of 0 to 100.


onDataMoveCompleted

- (void)onDataMoveCompleted;

Called when the request is completed.


onDataMoveErrorWithError:

- (void)onDataMoveErrorWithError:(nonnull NSError *)error;

Called when an error occurs.