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