bt_gatt_srv_send_notification_cb

The callback prototype to indicate that bt_gatt_srv_send_notification_async has completed.

Synopsis:

#include <btapi/btgattsrv.h>
 
typedef void(* bt_gatt_srv_send_notification_cb)(int instance, const char *bdaddr, uint8_t type, uint16_t handle, void *user_data);

Since:

BlackBerry 10.3.0

Arguments:

instance

The identifier used to reference the service.

bdaddr

The address of the remote Bluetooth device.

type

The device type identifier. Refer to constants prefixed with BT_DEVICE_TYPE_.

handle

The handle of the attribute for which the notification was sent.

user_data

The pointer to be returned when the callback is executed.

Library:

libbtapi (For the qcc command, use the -l btapi option to link against this library)

Description: