bt_gatt_callbacks_t

A structure that contains the list of callbacks to be used for GATT connections.

Synopsis:

typedef struct  {
    bt_gatt_service_connected_cb connected ;
    bt_gatt_service_disconnected_cb disconnected ;
    bt_gatt_service_updated_cb updated ;
}bt_gatt_callbacks_t;

Since:

BlackBerry 10.0.0

Data:

bt_gatt_service_connected_cb connected
The callback that indicates that service has been connected.
bt_gatt_service_disconnected_cb disconnected
The callback that indicates that service has been disconnected.
bt_gatt_service_updated_cb updated
The callback that indicates that connection parameters have changed.

Library:

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

Description: