Interface PlacesAirportsTaskCallback
-
public interface PlacesAirportsTaskCallback
Callback interface forPlacesAirportsTask
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onPlacesAirportsFailed(AerisError error)
This method will be called when an places airports request to the API has failed.void
onPlacesAirportsLoaded(List<PlacesAirportsResponse> responses)
This method will be called when a list of places airports have been returned from the API.
-
-
-
Method Detail
-
onPlacesAirportsLoaded
void onPlacesAirportsLoaded(List<PlacesAirportsResponse> responses)
This method will be called when a list of places airports have been returned from the API.- Parameters:
responses
- List of responses
-
onPlacesAirportsFailed
void onPlacesAirportsFailed(AerisError error)
This method will be called when an places airports request to the API has failed.- Parameters:
error
- The aeris error regarding to the fail.
-
-