public abstract class SimpleIBeaconListener extends java.lang.Object implements IBeaconListener
| Constructor and Description |
|---|
SimpleIBeaconListener() |
| Modifier and Type | Method and Description |
|---|---|
void |
onIBeaconDiscovered(IBeaconDevice ibeacon,
IBeaconRegion region)
Called when iBeacon is discovered for the first time.
|
void |
onIBeaconLost(IBeaconDevice ibeacon,
IBeaconRegion region)
Called when iBeacon is reported lost (out of range). onIBeaconDiscovered will be called when beacon is back in range.
|
void |
onIBeaconsUpdated(java.util.List<IBeaconDevice> ibeacons,
IBeaconRegion region)
Called when iBeacons are updated.
|
public void onIBeaconDiscovered(IBeaconDevice ibeacon, IBeaconRegion region)
IBeaconListeneronIBeaconDiscovered in interface IBeaconListeneribeacon - IBeaconDevice instance.region - IBeaconRegion instance.public void onIBeaconsUpdated(java.util.List<IBeaconDevice> ibeacons, IBeaconRegion region)
IBeaconListeneronIBeaconsUpdated in interface IBeaconListeneribeacons - List of updated IBeaconDevice devices.region - IBeaconRegion instance.public void onIBeaconLost(IBeaconDevice ibeacon, IBeaconRegion region)
IBeaconListeneronIBeaconLost in interface IBeaconListeneribeacon - Lost IBeaconDevice instance.region - IBeaconRegion instance.