android kotlin 如何通过回调在协程中调用多个 web 服务?

问题描述 投票:0回答:0

我需要使用协程和回调将对象列表发送到 android Kotlin 中的网络服务,下面是我的代码

             runBlocking {

                for(int =0;i<object.list.size();i++){
                            functionofWebservice(
                                object.auditId,
                                object.list.get(i),
                                callback //here i need to use call back for every call of service to check if all objects are inserted successfully or to check if at least one is fail
                            )
                       }
                        }

我的问题是如何对

runBlocking

中的每个 Web 服务调用使用回调
android kotlin callback kotlin-coroutines coroutine
© www.soinside.com 2019 - 2024. All rights reserved.