Interface MapUpdaterConstructionCallback
- Last UpdatedMay 13, 2025
- 1 minute read
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface MapUpdaterConstructionCallback
A method which is called on the main thread when
MapUpdater.fromEngineAsync(com.here.sdk.core.engine.SDKNativeEngine, com.here.sdk.maploader.MapUpdaterConstructionCallback)
has been completed. Construction requires the online configuration to be fetched, which in case of sync API, would block the calling thread. When configuration is cached, it is enough to read it from the disk, this operation still takes relatively big time.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onMapUpdaterConstructe(MapUpdater mapUpdater)
A method which is called on the main thread whenMapUpdater.fromEngineAsync(com.here.sdk.core.engine.SDKNativeEngine, com.here.sdk.maploader.MapUpdaterConstructionCallback)
has been completed.
-
-
-
Method Detail
-
onMapUpdaterConstructe
void onMapUpdaterConstructe(@NonNull MapUpdater mapUpdater)
A method which is called on the main thread when
MapUpdater.fromEngineAsync(com.here.sdk.core.engine.SDKNativeEngine, com.here.sdk.maploader.MapUpdaterConstructionCallback)
has been completed. Construction requires the online configuration to be fetched, which in case of sync API, would block the calling thread. When configuration is cached, it is enough to read it from the disk, this operation still takes relatively big time.- Parameters:
mapUpdater
-Represents a constructed MapUpdater object.
-
-