Reputation: 77
I want to send threeHourForecast object from onSuccess method back to activity from which it is called. I want clean and best solution for this problem. Here is my code.
open class WeatherForecastHandler {
open fun getForecast(lat: Double, lng: Double, weatherKey: String){
val helper = OpenWeatherMapHelper(weatherKey)
helper.setUnits(Units.METRIC)
helper.setLang(Lang.ENGLISH)
helper.getThreeHourForecastByGeoCoordinates(lat, lng, object : ThreeHourForecastCallback {
override fun onSuccess(threeHourForecast: ThreeHourForecast) {//send this "threeHourForecast" object back to the place from which "getForecast()" method is called.}
override fun onFailure(throwable: Throwable) {
Log.d("forecast", throwable.message!!)
}
})
}
}
Calling Function Place:
open class MapsActivity : FragmentActivity(), OnMapReadyCallback{
private lateinit var googleMap: GoogleMap
private lateinit var startPoint: LatLng
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_maps)
val mapFragment = supportFragmentManager.findFragmentById(R.id.map) as SupportMapFragment?
mapFragment!!.getMapAsync(this)
val bundle: Bundle? = intent.getParcelableExtra("bundle")
startPoint = bundle!!.getParcelable("startPoint")!!
}
override fun onMapReady(map: GoogleMap?) {
googleMap = map!!
val weatherHandler = WeatherForecastHandler()
weatherHandler.getForecast(startPoint.latitude, startPoint.longitude, getString(R.string.key)
//I need object here.
}
Upvotes: 0
Views: 52
Reputation: 142
Try to adding a function in your function type parameter. Like,
Weather Forecast Handler Class:
open fun getForecast(lat: Double, lng: Double, weatherKey: String, callback: ((result: ThreeHourForecast?) -> Unit)){
val helper = OpenWeatherMapHelper(weatherKey)
helper.setUnits(Units.METRIC)
helper.setLang(Lang.ENGLISH)
helper.getThreeHourForecastByGeoCoordinates(lat, lng, object : ThreeHourForecastCallback {
override fun onSuccess(threeHourForecast: ThreeHourForecast) {//send this "threeHourForecast" object back to the place from which "getForecast()" method is called.
callback(threeHourForecast)
}
override fun onFailure(throwable: Throwable) {
callback(null)
}
})
}
Maps Activity Class:
override fun onMapReady(map: GoogleMap?) {
googleMap = map!!
val weatherHandler = WeatherForecastHandler()
weatherHandler.getForecast(startPoint.latitude, startPoint.longitude, getString(R.string.key) { result: ThreeHourForecast? ->
// You can now receive value of 'threeHourForecast'
}
//I need object here.
}
Upvotes: 1