summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDirk Dougherty <ddougherty@google.com>2010-03-29 14:20:41 -0700
committerDirk Dougherty <ddougherty@google.com>2010-03-29 14:47:39 -0700
commitd76ef97930d45e37dba4ac58b376c3067c2eb54a (patch)
tree1ec277b76a8ddda9435e683953125dff7804c0b4 /docs
parent272b504ee6aaf2515572520cd642f9a4fbf81a44 (diff)
downloadframeworks_base-d76ef97930d45e37dba4ac58b376c3067c2eb54a.zip
frameworks_base-d76ef97930d45e37dba4ac58b376c3067c2eb54a.tar.gz
frameworks_base-d76ef97930d45e37dba4ac58b376c3067c2eb54a.tar.bz2
doc change: In fundamentals doc, make statement about synchronous execution of RPC less strict. Indicate that FLAG_ONEWAY applies only across processes.
Bug: 2554090 Change-Id: Ia13b3d156d230609e8296a3b31c2882ba13681f3
Diffstat (limited to 'docs')
-rw-r--r--docs/html/guide/topics/fundamentals.jd4
1 files changed, 2 insertions, 2 deletions
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>