ESTSettingEddystoneTLMEnable
@interface ESTSettingEddystoneTLMEnable : ESTSettingReadWrite <NSCopying>
ESTSettingEddystoneTLMEnable represents Eddystone Telemetry Enable value.
-
Designated initializer.
Declaration
Objective-C
- (nonnull instancetype)initWithValue:(BOOL)enabled;Swift
init(value enabled: Bool)Parameters
enabledEddystone Telemetry Enable value.
Return Value
Initialized object.
-
Returns current value of Eddystone Telemetry Enable setting.
Declaration
Objective-C
- (BOOL)getValue;Swift
func getValue() -> BoolReturn Value
Eddystone Telemetry Enable value.
-
Method allows to read value of initialized Eddystone Telemetry Enable setting object.
Declaration
Objective-C
- (void)readValueWithCompletion: (nonnull ESTSettingEddystoneTLMEnableCompletionBlock)completion;Swift
func readValue(completion: @escaping ESTSettingEddystoneTLMEnableCompletionBlock)Parameters
completionBlock to be invoked when operation is complete.
-
Method allows to create write operation from already initialized Eddystone Telemetry Enable setting object. Value provided during initialization will be used as a desired value.
Declaration
Objective-C
- (void)writeValue:(BOOL)enabled completion: (nonnull ESTSettingEddystoneTLMEnableCompletionBlock)completion;Swift
func writeValue(_ enabled: Bool, completion: @escaping ESTSettingEddystoneTLMEnableCompletionBlock)Parameters
enabledEnable value to be written to the device.
completionBlock to be invoked when operation is complete.
View on GitHub
ESTSettingEddystoneTLMEnable Class Reference