任何人都可以向我描述 aidl 中的单向 for android?
就像在下面的代码一样,是什么?
for (int i = 0; i < arrayMonthList.count; i++) {
MyCustomModel *myModelObject = [arrayMonthList objectAtIndex:i];
NSLog(@"Month is %@ and its value is %@",myModelObject.myCustomKey,myModelObject.myCustomValue);
}
答案 0 :(得分:0)
来自Google文档(https://developer.android.com/guide/components/aidl.html)
oneway关键字修改远程调用的行为。使用时,远程呼叫不会阻止;它只是发送交易数据并立即返回。接口的实现最终将此作为来自Binder线程池的常规调用作为普通远程调用接收。如果单向使用本地呼叫,则没有影响,呼叫仍然是同步的。