Interface DeviceIdCallback
Package com.here.sdk.core.engine
Interface DeviceIdCallback
-
- 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 DeviceIdCallbackThis method will be called on the main thread when
SDKNativeEngine.getDeviceId(com.here.sdk.core.engine.DeviceIdCallback)has been completed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonDeviceIdCallbackCompleted(java.lang.String deviceId)This method will be called on the main thread whenSDKNativeEngine.getDeviceId(com.here.sdk.core.engine.DeviceIdCallback)has been completed.
-
-
-
Method Detail
-
onDeviceIdCallbackCompleted
void onDeviceIdCallbackCompleted(@NonNull java.lang.String deviceId)This method will be called on the main thread when
SDKNativeEngine.getDeviceId(com.here.sdk.core.engine.DeviceIdCallback)has been completed.- Parameters:
deviceId-Represents a deviceId, a unique identifier assigned to the device for this application.
-
-