Merge "Document linkToDeath behavior on object cleanup." am: 2608950d10 am: f276d0b74d am: 179ba84aab

Change-Id: I9e5a043b5053eabce16df166d621d1a4dd8a7de8
This commit is contained in:
Steven Moreland
2020-04-01 19:22:10 +00:00
committed by Automerger Merge Worker

View File

@@ -313,13 +313,16 @@ public interface IBinder {
* then the given {@link DeathRecipient}'s
* {@link DeathRecipient#binderDied DeathRecipient.binderDied()} method
* will be called.
*
*
* <p>This will automatically be unlinked when all references to the linked
* binder proxy are dropped.</p>
*
* <p>You will only receive death notifications for remote binders,
* as local binders by definition can't die without you dying as well.
*
* as local binders by definition can't die without you dying as well.</p>
*
* @throws RemoteException if the target IBinder's
* process has already died.
*
*
* @see #unlinkToDeath
*/
public void linkToDeath(@NonNull DeathRecipient recipient, int flags)