如何在您的通用模块中使用流公开API?

时间:2019-11-06 07:56:14

标签: kotlin-coroutines kotlin-multiplatform kotlin-native

我的 common 模块中有以下期望的课程:

internal expect class CategoryLocalSource() {

fun getCategories(): Flow<List<Category>>

fun cacheCategoryList(): Flow<List<Category>>

}

我知道我无法向{strong> iOS 公开suspend函数和Flow,是否有解决方案以某种方式使用流?除了定义 expand Stream类之外,其实际实现是在 platform模块中定义的?

0 个答案:

没有答案