Dispatch:kotlinx.coroutines的实用程序

时间:2024-05-25 11:58:28
【文件属性】:

文件名称:Dispatch:kotlinx.coroutines的实用程序

文件大小:1.57MB

文件格式:ZIP

更新时间:2024-05-25 11:58:28

Kotlin

派遣 实用程序,使它们具有类型安全性,易于测试和更具表现力。 使用预定义的或定义您自己的,不要再注入Dispatchers对象。 val presenter = MyPresenter ( MainCoroutineScope ()) class MyPresenter @Inject constructor( /* * * Defaults to the Main dispatcher */ val coroutineScope : MainCoroutineScope ) { fun loopSomething () = coroutineScope.launchDefault { } suspend fun updateSomething () = withMainImmediate { } } class MyTest { @Test fun


网友评论