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

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 be null.

deadInterface E: the interface that has died.

cookie Object: the cookie specified on interface registration. This value may be null.