Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public abstract class

BluetoothHealthCallback

extends Object
java.lang.Object
   ↳ android.bluetooth.BluetoothHealthCallback

Class Overview

This abstract class is used to implement BluetoothHealth callbacks.

Summary

Public Constructors
BluetoothHealthCallback ()
Public Methods
void onHealthAppConfigurationStatusChange ( BluetoothHealthAppConfiguration config, int status)
Callback to inform change in registration state of the health application.
void onHealthChannelStateChange ( BluetoothHealthAppConfiguration config, BluetoothDevice device, int prevState, int newState, ParcelFileDescriptor fd, int channelId)
Callback to inform change in channel state.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public BluetoothHealthCallback ()

Public Methods

public void onHealthAppConfigurationStatusChange ( BluetoothHealthAppConfiguration config, int status)

Callback to inform change in registration state of the health application.

This callback is called on the binder thread (not on the UI thread)

Parameters
config Bluetooth Health app configuration
status Success or failure of the registration or unregistration calls. Can be one of APP_CONFIG_REGISTRATION_SUCCESS or APP_CONFIG_REGISTRATION_FAILURE or APP_CONFIG_UNREGISTRATION_SUCCESS or APP_CONFIG_UNREGISTRATION_FAILURE

public void onHealthChannelStateChange ( BluetoothHealthAppConfiguration config, BluetoothDevice device, int prevState, int newState, ParcelFileDescriptor fd, int channelId)

Callback to inform change in channel state.

Its the responsibility of the implementor of this callback to close the parcel file descriptor when done. This callback is called on the Binder thread (not the UI thread)

Parameters
config The Health app configutation
device The Bluetooth Device
prevState The previous state of the channel
newState The new state of the channel.
fd The Parcel File Descriptor when the channel state is connected.
channelId The id associated with the channel. This id will be used in future calls like when disconnecting the channel.