Interface ConditionsTaskCallback
-
public interface ConditionsTaskCallback
Callback interface forConditionsTask
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onConditionsFailed(AerisError error)
This method will be called when an observation request to the API has failed.void
onConditionsLoaded(List<ConditionsResponse> responses)
This method will be called when a list of observations have been returned from the API.
-
-
-
Method Detail
-
onConditionsLoaded
void onConditionsLoaded(List<ConditionsResponse> responses)
This method will be called when a list of observations have been returned from the API.- Parameters:
responses
- List of responses
-
onConditionsFailed
void onConditionsFailed(AerisError error)
This method will be called when an observation request to the API has failed.- Parameters:
error
- The aeris error regarding to the fail.
-
-