Interface TidesStationsTaskCallback
-
public interface TidesStationsTaskCallback
Callback interface forTidesStationsTask
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onTideStationsFailed(AerisError error)
This method will be called when an tides stations request to the API has failed.void
onTideStationsLoaded(List<TideStationsResponse> responses)
This method will be called when a list of tide stations have been returned from the API.
-
-
-
Method Detail
-
onTideStationsLoaded
void onTideStationsLoaded(List<TideStationsResponse> responses)
This method will be called when a list of tide stations have been returned from the API.- Parameters:
responses
- List of responses
-
onTideStationsFailed
void onTideStationsFailed(AerisError error)
This method will be called when an tides stations request to the API has failed.- Parameters:
error
- The aeris error regarding to the fail.
-
-