to top
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 ()

Since: API Level 14

Public Methods

public void onHealthAppConfigurationStatusChange (BluetoothHealthAppConfiguration config, int status)

Since: API Level 14

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)

Since: API Level 14

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.