Package 

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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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.