diff options
author | Dirk Dougherty <ddougherty@google.com> | 2010-03-29 15:36:53 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2010-03-29 15:36:53 -0700 |
commit | c46f28dc0fde1889b37bdc7066ec2af96c16e358 (patch) | |
tree | 8f8fe3fc4f53725c67351b4b65308acff9a6e537 | |
parent | 02a1f78987a1e6bfa361806fcd3b0a02783b09b9 (diff) | |
parent | d76ef97930d45e37dba4ac58b376c3067c2eb54a (diff) | |
download | frameworks_base-c46f28dc0fde1889b37bdc7066ec2af96c16e358.zip frameworks_base-c46f28dc0fde1889b37bdc7066ec2af96c16e358.tar.gz frameworks_base-c46f28dc0fde1889b37bdc7066ec2af96c16e358.tar.bz2 |
Merge "doc change: In fundamentals doc, make statement about synchronous execution of RPC less strict. Indicate that FLAG_ONEWAY applies only across processes." into froyo
-rw-r--r-- | core/java/android/os/IBinder.java | 3 | ||||
-rw-r--r-- | docs/html/guide/topics/fundamentals.jd | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/core/java/android/os/IBinder.java b/core/java/android/os/IBinder.java index 5c40c9a0..174f3b6 100644 --- a/core/java/android/os/IBinder.java +++ b/core/java/android/os/IBinder.java @@ -112,7 +112,8 @@ public interface IBinder { /** * Flag to {@link #transact}: this is a one-way call, meaning that the * caller returns immediately, without waiting for a result from the - * callee. + * callee. Applies only if the caller and callee are in different + * processes. */ int FLAG_ONEWAY = 0x00000001; diff --git a/docs/html/guide/topics/fundamentals.jd b/docs/html/guide/topics/fundamentals.jd index 807c7ff..fd9af50 100644 --- a/docs/html/guide/topics/fundamentals.jd +++ b/docs/html/guide/topics/fundamentals.jd @@ -990,8 +990,8 @@ the RPC interface itself. </p> <p> -An RPC interface can include only methods. -All methods are executed synchronously (the local method blocks until the +An RPC interface can include only methods. By default, +all methods are executed synchronously (the local method blocks until the remote method finishes), even if there is no return value. </p> |