Added in API level 36
  
  
  
  
RemoteCallbackList.Builder.InterfaceDiedCallback
  public
  static
  
  
  interface
  RemoteCallbackList.Builder.InterfaceDiedCallback
  
  
  
| android.os.RemoteCallbackList.Builder.InterfaceDiedCallback<E extends android.os.IInterface> | 
For notifying when the process hosting a callback interface has died.
Summary
| Public methods | |
|---|---|
| 
        abstract
        
        
        
        
        void | 
      onInterfaceDied(RemoteCallbackList<E> remoteCallbackList, E deadInterface, Object cookie)
      Invoked when a callback interface has died. | 
Public methods
onInterfaceDied
    Added in API level 36
  
      
  
    public abstract void onInterfaceDied (RemoteCallbackList<E> remoteCallbackList, E deadInterface, Object cookie)
Invoked when a callback interface has died.
| Parameters | |
|---|---|
| remoteCallbackList | RemoteCallbackList: the list that the interface was registered with.
 This value cannot benull. | 
| deadInterface | E: the interface that has died. | 
| cookie | Object: the cookie specified on interface registration.
 This value may benull. | 
