FileDocCategorySizeDatePackage
FusedProvider.javaAPI DocAndroid 5.1 API2150Thu Mar 12 22:22:30 GMT 2015com.android.location.provider

FusedProvider

public abstract class FusedProvider extends Object
Base class for Fused providers implemented as unbundled services.

Fused providers can be implemented as services and return the result of {@link com.android.location.provider.FusedProvider#getBinder()} in its getBinder() method.

IMPORTANT: This class is effectively a public API for unbundled applications, and must remain API stable. See README.txt in the root of this package for more information.

Fields Summary
private IFusedProvider.Stub
mProvider
Constructors Summary
Methods Summary
public android.os.IBindergetBinder()
Gets the Binder associated with the provider. This is intended to be used for the onBind() method of a service that implements a fused service.

return
The IBinder instance associated with the provider.


                                          
       
        return mProvider;
    
public abstract voidsetFusedLocationHardware(FusedLocationHardware value)
Sets the FusedLocationHardware instance in the provider..

param
value The instance to set. This can be null in cases where the service connection is disconnected.