Interface TropicalCyclonesTaskCallback
-
public interface TropicalCyclonesTaskCallback
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonTropicalCyclonesFailed(AerisError error)This method will be called when an tropical_cyclones request to the API has failed.voidonTropicalCyclonesLoaded(List<AerisDataJSON> responses, boolean success, AerisError error)This method will be called when a list of tropical_cyclones have been returned from the API.
-
-
-
Method Detail
-
onTropicalCyclonesLoaded
void onTropicalCyclonesLoaded(List<AerisDataJSON> responses, boolean success, AerisError error)
This method will be called when a list of tropical_cyclones have been returned from the API.- Parameters:
responses- Listsuccess- booleanerror- AerisError
-
onTropicalCyclonesFailed
void onTropicalCyclonesFailed(AerisError error)
This method will be called when an tropical_cyclones request to the API has failed.- Parameters:
error- The aeris error regarding to the fail.
-
-