System.Bluetooth.TBluetoothLEDevice.AbortReliableWrite

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure AbortReliableWrite;

C++

void __fastcall AbortReliableWrite();

Properties

Type Visibility Source Unit Parent
procedure
function
public
System.Bluetooth.pas
System.Bluetooth.hpp
System.Bluetooth TBluetoothLEDevice

Description

Aborts a previously-started transaction to write a set of characteristics on a remote device as an atomic transaction.

To write a set of characteristics on a remote device as an atomic transaction:

  1. Call BeginReliableWrite to start the transaction.
  2. Call WriteCharacteristic as many times as you want. The remove device does not write the characteristic, it only verifies that the value sent is correct, and queues the change up for an atomic execution. The remote device does trigger however OnCharacteristicWrite; handle this event to verify that the new value that the remote device received from you is correct.
  3. After you make all your calls to WriteCharacteristic, do either of the following:

AbortReliableWrite calls DoAbortReliableWrite.

Platform Support

Platform Supported

Windows

YesC++11Feature.png

OS X

iOS

Android

YesC++11Feature.png

See Also