Interface PlacesPostalcodesTaskCallback
-
public interface PlacesPostalcodesTaskCallbackCallback interface forPlacesPostalcodesTask.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonPostalcodesFailed(AerisError error)This method will be called when an places postal codes request to the API has failed.voidonPostalcodesLoaded(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.
-
-