package cc.pogoda.mobile.pogodacc.dao; import java.io.IOException; import cc.pogoda.mobile.pogodacc.type.web.Trend; import cc.pogoda.mobile.pogodacc.web.RestClientConfig; import cc.pogoda.mobile.pogodacc.web.TrendConsumer; import retrofit2.Response; public class TrendDao { Response trend; String station = null; class Worker implements Runnable { RestClientConfig restClient; @Override public void run() { restClient = new RestClientConfig(); TrendConsumer trendConsumer = restClient.getWeatherStationClient().create(TrendConsumer.class); try { trend = trendConsumer.getTrendForStation(station).execute(); } catch (IOException e) { e.printStackTrace(); } } } public Trend getStationTrend(String station) { Trend out = new Trend(); this.station = station; Thread thread = new Thread(new Worker()); thread.start(); try { thread.join(); out = trend.body(); } catch (InterruptedException e) { e.printStackTrace(); } catch (NullPointerException e) { e.printStackTrace(); } return out; } }