This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Activate filesource to list offline regions #10531
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -149,15 +149,16 @@ private Handler getHandler() { | |
* | ||
* @param callback the callback to be invoked | ||
*/ | ||
public void listOfflineRegions(@NonNull | ||
final ListOfflineRegionsCallback callback) { | ||
public void listOfflineRegions(@NonNull final ListOfflineRegionsCallback callback) { | ||
fileSource.activate(); | ||
listOfflineRegions(fileSource, new ListOfflineRegionsCallback() { | ||
|
||
@Override | ||
public void onList(final OfflineRegion[] offlineRegions) { | ||
getHandler().post(new Runnable() { | ||
@Override | ||
public void run() { | ||
fileSource.deactivate(); | ||
callback.onList(offlineRegions); | ||
} | ||
}); | ||
|
@@ -168,6 +169,7 @@ public void onError(final String error) { | |
getHandler().post(new Runnable() { | ||
@Override | ||
public void run() { | ||
fileSource.deactivate(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Probably we should do the callback first and then deactivate the fileSource |
||
callback.onError(error); | ||
} | ||
}); | ||
|
@@ -241,6 +243,7 @@ private boolean isValidOfflineRegionDefinition(OfflineRegionDefinition definitio | |
/** | ||
* Changing or bypassing this limit without permission from Mapbox is prohibited | ||
* by the Mapbox Terms of Service. | ||
* | ||
* @param limit the new tile count limit. | ||
*/ | ||
public native void setOfflineMapboxTileCountLimit(long limit); | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should fileSource.deactivate();
happen after the callback.onList(offlineRegions); ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I rebased osana-offline branch and was not able to see listed offline regions any more.
Reversing the order - fixed my issue
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
startled that this is the case, could you follow up in your branch with reversing?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I updated the branch with that change.