예제 #1
0
 public WeatherDataLoader(LocationData location, IWeatherLoadedListener listener, IWeatherErrorListener errorListener)
     : this(location, listener)
 {
     errorCallback = errorListener;
 }
예제 #2
0
 public void SetWeatherLoadedListener(IWeatherLoadedListener listener)
 {
     callback = listener;
 }
예제 #3
0
 public WeatherDataLoader(LocationData location, IWeatherLoadedListener listener)
     : this(location)
 {
     callback = listener;
 }