AIDL tags
2014. 9. 26. 20:17
@AIDL
oneway
: The keyword means that if that call results in an IPC (i.e. the caller and callee are in different processes) then the calling process will not wait for the called process to handle the IPC.
Client의 Callback 처리 결과를 기다리지 않겠다는 것. 하나의 callee가 callback 처리시 오랜 시간을 잡고 있어도 문제가 없다.
Interface IServiceCallback {
oneway void onCallback(…)
in
: tag specifies an input-only parameter
out
: tag specifies an output-only parameter
inout
: on both in/output
'관심거리 > Android' 카테고리의 다른 글
String 표기 팁.. (0) | 2014.09.12 |
---|---|
Android resource?? (0) | 2014.09.06 |
Google Navigation 실행 (0) | 2012.08.21 |