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