ManufacturerDataAltBeacon
@available(swift 4.0)
@available(iOS 10.0, tvOS 10.0, watchOS 3.0, macOS 10.12, *)
final public class ManufacturerDataAltBeacon : ManufacturerData
extension ManufacturerDataAltBeacon: Hashable
extension ManufacturerDataAltBeacon: Equatable
AltBeacon Manufacturer Specific Data
-
Manufacturer
Declaration
Swift
public var manufacturer: CompanyIdentifier
-
Data
Declaration
Swift
public var specificData: Data?
-
Beacon ID
A 20-byte value uniquely identifying the beacon
Declaration
Swift
private(set) public var beaconID: [UInt8] { get }
-
Reference Power
Average received signal strength at 1m from the advertiser
Declaration
Swift
private(set) public var referencePower: Int8 { get }
-
Manufacturer Reserved Value
Reserved for use by the manufacturer to implement special features
Declaration
Swift
private(set) public var manufacturerReserved: UInt8 { get }
-
Creates an AltBeacon Manufacturer Specific Data Class
Declaration
Swift
public init(manufacturer: CompanyIdentifier, beaconID: [UInt8], referencePower: Int8, manufacturerReserved: UInt8)
Parameters
manufacturer
Company Identifier
beaconID
Beacon ID
referencePower
Reference Power
manufacturerReserved
Manufacturer Reserved Value
-
Undocumented
Declaration
Swift
public init(from decoder: Decoder) throws
-
Decodes Manufacturer Specific Data into ManufacturerData
Declaration
Swift
public class func decode(with data: Data) -> Result<ManufacturerDataAltBeacon, BluetoothDecodeError>
Parameters
data
ManufacturerData Data
Return Value
ManufacturerData Result
-
Encodes AltBeacon Manufacturer Specific Data
Declaration
Swift
public func encode() -> Result<Data, BluetoothEncodeError>
Return Value
ManufacturerData Result
-
Encodes this value into the given encoder.
If the value fails to encode anything,
encoder
will encode an empty keyed container in its place.This function throws an error if any values are invalid for the given encoder’s format.
Declaration
Swift
public func encode(to encoder: Encoder) throws
Parameters
encoder
The encoder to write data to.
-
Hashes the essential components of this value by feeding them into the given hasher.
Implement this method to conform to the
Hashable
protocol. The components used for hashing must be the same as the components compared in your type’s==
operator implementation. Callhasher.combine(_:)
with each of these components.Important
Never call
finalize()
onhasher
. Doing so may become a compile-time error in the future.Declaration
Swift
public func hash(into hasher: inout Hasher)
Parameters
hasher
The hasher to use when combining the components of this instance.
-
Returns a Boolean value indicating whether two values are equal.
Equality is the inverse of inequality. For any values
a
andb
,a == b
implies thata != b
isfalse
.Declaration
Swift
public static func == (lhs: ManufacturerDataAltBeacon, rhs: ManufacturerDataAltBeacon) -> Bool
Parameters
lhs
A value to compare.
rhs
Another value to compare.