Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6c754559 authored by Dirk Dougherty's avatar Dirk Dougherty Committed by Android Git Automerger
Browse files

am c46f28dc: Merge "doc change: In fundamentals doc, make statement about...

am c46f28dc: 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

Merge commit 'c46f28dc' into froyo-plus-aosp

* commit 'c46f28dc':
  doc change: In fundamentals doc, make statement about synchronous execution of RPC less strict. Indicate that FLAG_ONEWAY applies only across processes.
parents 538c310b c46f28dc
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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;
    
+2 −2
Original line number Diff line number Diff line
@@ -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>