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