繁体   English   中英

使用属性作为 Kotlin 协程的访问器

[英]Use property as accessor for Kotlin Coroutine

Kotlin 协程问题...挣扎着使用属性而不是 function 作为异步调用的访问器。

背景是我正在尝试将FusedLocationProviderClientkotlinx-coroutines-play-services库一起使用,以便在Task上使用.await()方法而不是添加回调......

目前有一个属性获取器被踢出以暂停 function,但不确定如何正确启动协程以避免

找到所需的单位 XYZ

错误...

 val lastUserLatLng: LatLng?
        get() {
            val location = lastUserLocation
            return if (location != null) {
                LatLng(location.latitude, location.longitude)
            } else {
                null
            }
        }

    val lastUserLocation: Location?
        get() {
            GlobalScope.launch {
                return@launch getLastUserLocationAsync()  <--- ERROR HERE
            }
        }

    private suspend fun getLastUserLocationAsync() : Location? = withContext(Dispatchers.Main) {
        return@withContext if (enabled) fusedLocationClient.lastLocation.await() else null
    }

关于如何处理这个问题的任何想法?

属性不能是异步的。 一般来说,您不应该同步异步调用。 当您需要一个值时,您必须返回一个Deferred并在其上调用await()

val lastUserLatLng: Deferredd<LatLng?>
    get() = GlobalScope.async {
        lastUserLocation.await()?.run {
            LatLng(latitude, longitude)
        }
    }

val lastUserLocation: Deferred<Location?>
    get() = GlobalScope.async {
        getLastUserLocationAsync()
    }

private suspend fun getLastUserLocationAsync() : Location? = withContext(Dispatchers.Main) {
    return@withContext if (enabled) fusedLocationClient.lastLocation.await() else null
}

但从技术上讲,这是可能的,尽管你不应该这样做。 runBlocking()阻塞直到一个值可用并返回它。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM