DeletedRegionsCallback (API Reference)
Package com.here.sdk.maploader
Interface DeletedRegionsCallback
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A method which is called on the main thread when MapDownloader.deleteRegions(java.util.List<com.here.sdk.maploader.RegionId>, com.here.sdk.maploader.DeletedRegionsCallback) has been completed.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonCompleted(MapLoaderError maploaderError, List<RegionId> regions) A method which is called on the main thread whenMapDownloader.deleteRegions(java.util.List<com.here.sdk.maploader.RegionId>, com.here.sdk.maploader.DeletedRegionsCallback)has been completed.
-
Method Details
-
onCompleted
A method which is called on the main thread when
MapDownloader.deleteRegions(java.util.List<com.here.sdk.maploader.RegionId>, com.here.sdk.maploader.DeletedRegionsCallback)has been completed.- Parameters:
maploaderError-Represents an error in case of a failure. It is [null] for an operation that succeeds.
regions-Represents a list of successfully removed map regions. It is [null] in case of an error.
-