Interface StormCellsTaskCallback
-
public interface StormCellsTaskCallback
Callback interface forStormCellsTask
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onStormCellsFailed(AerisError error)
This method will be called when an storm cells request to the API has failed.void
onStormCellsLoaded(List<StormCellResponse> responses)
This method will be called when a list of storm cells have been returned from the API.
-
-
-
Method Detail
-
onStormCellsLoaded
void onStormCellsLoaded(List<StormCellResponse> responses)
This method will be called when a list of storm cells have been returned from the API.- Parameters:
responses
- List of responses
-
onStormCellsFailed
void onStormCellsFailed(AerisError error)
This method will be called when an storm cells request to the API has failed.- Parameters:
error
- The aeris error regarding to the fail.
-
-