-
public interface InternalBeaconConsumer
-
-
Method Summary
Modifier and Type Method Description abstract void
onBeaconServiceConnect()
Called when the beacon service is running and ready to accept your commands through the BeaconManager abstract Context
getApplicationContext()
Called by the BeaconManager to get the context of your Service or Activity. abstract void
unbindService(ServiceConnection connection)
Called by the BeaconManager to unbind your BeaconConsumer to the BeaconService. abstract boolean
bindService(Intent intent, ServiceConnection connection, int mode)
Called by the BeaconManager to bind your BeaconConsumer to the BeaconService. -
-
Method Detail
-
onBeaconServiceConnect
abstract void onBeaconServiceConnect()
Called when the beacon service is running and ready to accept your commands through the BeaconManager
-
getApplicationContext
abstract Context getApplicationContext()
Called by the BeaconManager to get the context of your Service or Activity. This method is implemented by Service or Activity. You generally should not override it.
-
unbindService
abstract void unbindService(ServiceConnection connection)
Called by the BeaconManager to unbind your BeaconConsumer to the BeaconService. This method is implemented by Service or Activity, and You generally should not override it.
-
bindService
abstract boolean bindService(Intent intent, ServiceConnection connection, int mode)
Called by the BeaconManager to bind your BeaconConsumer to the BeaconService. This method is implemented by Service or Activity, and You generally should not override it.
-
-
-
-