android.os.IServiceCallback Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.os;
public interface IServiceCallback extends IInterface
{
public static abstract class Stub extends Binder implements IServiceCallback {
}
/**
* Called when a service is registered.
*
* @param name the service name that has been registered with
* @param binder the binder that is registered
*/
public void onRegistration(String name, IBinder binder) throws RemoteException;
}