summaryrefslogtreecommitdiff
path: root/platform/darwin/include
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2016-03-09 08:50:45 -0800
committerMinh Nguyễn <mxn@1ec5.org>2016-03-10 17:08:58 -0800
commit77d99584cec58ea2c6c8b58257ca5e13d0c02834 (patch)
tree6cad810ecb78b4074ce2ce643800315f7a111d07 /platform/darwin/include
parent68ba0712f758d774d544e2bdd05af9ff780583da (diff)
downloadqtlocation-mapboxgl-77d99584cec58ea2c6c8b58257ca5e13d0c02834.tar.gz
[ios, osx] Distinguish between unknown and inactive state
Diffstat (limited to 'platform/darwin/include')
-rw-r--r--platform/darwin/include/MGLOfflineTask.h43
1 files changed, 30 insertions, 13 deletions
diff --git a/platform/darwin/include/MGLOfflineTask.h b/platform/darwin/include/MGLOfflineTask.h
index 504416aeb9..8b463d1202 100644
--- a/platform/darwin/include/MGLOfflineTask.h
+++ b/platform/darwin/include/MGLOfflineTask.h
@@ -11,27 +11,44 @@ NS_ASSUME_NONNULL_BEGIN
*/
typedef NS_ENUM (NSInteger, MGLOfflineTaskState) {
/**
- The task is incomplete and is not currently downloading. This is the
- initial state of a task that is added using the
- `-[MGLOfflineStorage addTaskForRegion:withContext:completionHandler:]`
- method.
+ It is unknown whether the task is inactive, active, or complete.
+
+ This is the initial state of a task that is obtained using the
+ `-[MGLOfflineStorage getTasksWithCompletionHandler:]` method. The state
+ becomes known by the time the task’s delegate receives its first progress
+ update. For inactive tasks, you must explicitly request a progress update
+ using the `-[MGLOfflineTask requestProgress]` method.
+
+ An invalid task always has a state of `MGLOfflineTaskStateInvalid`, never
+ `MGLOfflineTaskStateUnknown`.
+ */
+ MGLOfflineTaskStateUnknown = 0,
+ /**
+ The task is incomplete and is not currently downloading.
+
+ This is the initial state of a task that is created using the
+ `-[MGLOfflineTask addTaskForRegion:withContext:completionHandler:]` method,
+ as well as after the `-[MGLOfflineTask suspend]` method is
+ called.
*/
- MGLOfflineTaskStateInactive = 0,
+ MGLOfflineTaskStateInactive = 1,
/**
- The task is incomplete and is currently downloading. This is the state of a
- task after the `-[MGLOfflineTask resume]` method is called.
+ The task is incomplete and is currently downloading.
+
+ This is the state of a task after the `-[MGLOfflineTask resume]` method is
+ called.
*/
- MGLOfflineTaskStateActive = 1,
+ MGLOfflineTaskStateActive = 2,
/**
The task has downloaded to completion.
*/
- MGLOfflineTaskStateComplete = 2,
+ MGLOfflineTaskStateComplete = 3,
/**
The task has been removed using the
- `-[MGLOfflineStorage removeTask:withCompletionHandler:]` method. Any
- messages sent to the task will raise an exception.
+ `-[MGLOfflineStorage removeTask:withCompletionHandler:]` method. Sending
+ any message to the task will raise an exception.
*/
- MGLOfflineTaskStateInvalid = 3,
+ MGLOfflineTaskStateInvalid = 4,
};
/**
@@ -91,7 +108,7 @@ typedef struct MGLOfflineTaskProgress {
The task’s current state.
The state of an inactive or completed task is computed lazily and is set to
- `MGLOfflineTaskStateInactive` by default. If you need the state of a task
+ `MGLOfflineTaskStateUnknown` by default. If you need the state of a task
inside an `MGLOfflineTaskListingCompletionHandler`, set the `delegate` property
then call the `-requestProgress` method.
*/