我需要使用协程和回调将对象列表发送到 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 服务调用使用回调