Package com.here.sdk.core
Interface AuthorizedFeaturesCallback
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Callback used to retrieve allowed features. This callback is called on the main thread asynchronously when retrieving allowed features has completed.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonFeaturesReceived(List<LayerConfiguration.Feature> features, AuthorizationError error) Callback used to retrieve allowed features.
-
Method Details
-
onFeaturesReceived
void onFeaturesReceived(@Nullable List<LayerConfiguration.Feature> features, @Nullable AuthorizationError error) Callback used to retrieve allowed features. This callback is called on the main thread asynchronously when retrieving allowed features has completed.
- Parameters:
features-List of authorized features.
error-Represents the operation status. It is 'null' for an operation that succeeds.
-