Mappers are databases that hold the position information for Beacons.
Class | Description |
---|---|
InMemoryMapper | Really simple mapper that you can load with constants. This is really useful for debugging and testing. |
SortedFileMapper | SortedFileMapper is a mapper implementation that stores the beacon info a text file with fixed-length records. Binary search is used to find beacons. |
SQLiteMapper | A SQLite-based mapper implementation. This class is mostly just a wrapper/marshalling layer on top of mapper.c in the Native Support libraries. |