summaryrefslogtreecommitdiffstats
path: root/docs/html/guide/developing/tools/aidl.jd
diff options
context:
space:
mode:
Diffstat (limited to 'docs/html/guide/developing/tools/aidl.jd')
-rw-r--r--docs/html/guide/developing/tools/aidl.jd4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/guide/developing/tools/aidl.jd b/docs/html/guide/developing/tools/aidl.jd
index 19d9ea1..d3da285 100644
--- a/docs/html/guide/developing/tools/aidl.jd
+++ b/docs/html/guide/developing/tools/aidl.jd
@@ -161,10 +161,10 @@ private final IRemoteService.Stub mBinder = new IRemoteService.Stub(){
<p>A few rules about implementing your interface: </p>
<ul>
<li>No exceptions that you throw will be sent back to the caller.</li>
- <li>IPC calls are synchronous. If you know that an IPC service takes more than
+ <li>By default, IPC calls are synchronous. If you know that an IPC service takes more than
a few milliseconds to complete, you should not call it in the Activity/View thread,
because it might hang the application (Android might display an &quot;Application
- is Not Responding&quot; dialog).
+ is Not Responding&quot; dialog).
Try to call them in a separate thread. </li>
<li>Only methods are supported; you cannot declare static fields in an AIDL interface.</li>
</ul>