System.Bluetooth.Components.TBluetoothLE.DoOnReliableWriteCompleted

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoOnReliableWriteCompleted(const Sender: TObject; AGattStatus: TBluetoothGattStatus);

C++

void __fastcall DoOnReliableWriteCompleted(System::TObject* const Sender, System::Bluetooth::TBluetoothGattStatus AGattStatus);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
System.Bluetooth.Components.pas
System.Bluetooth.Components.hpp
System.Bluetooth.Components TBluetoothLE

Description

Dispatcher of the OnReliableWriteCompleted event.

DoOnReliableWriteCompleted is called after a response from the remote device triggered by a previous call to ExecuteReliableWrite.

This event dispatcher receives the following parameters:

  • Sender is the remote device that performed the reliable write operation.
  • AStatus is the exit status of the reliable write operation.

See Also