VenueListener (API Reference)
Package com.here.sdk.venue.service
Interface VenueListener
public interface VenueListener
The interface for listeners for
venue loading events in VenueService.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonGetVenueCompleted(int venueId, VenueModel venueModel, boolean online, VenueStyle venueStyle) Called when loading of a venue or its retrieval from the cache is completed.
-
Method Details
-
onGetVenueCompleted
void onGetVenueCompleted(int venueId, @Nullable VenueModel venueModel, boolean online, @Nullable VenueStyle venueStyle) Called when loading of a venue or its retrieval from the cache is completed.
- Parameters:
venueId-The id of the venue.
venueModel-The venue model.
online-Trueif a new venue was loaded from the server andfalseotherwise.venueStyle-The style associated with the venue.
-