java.lang.Object | |
↳ | android.bluetooth.BluetoothHealthCallback |
This abstract class is used to implement BluetoothHealth
callbacks.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Callback to inform change in registration state of the health
application.
| |||||||||||
Callback to inform change in channel state.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Callback to inform change in registration state of the health application.
This callback is called on the binder thread (not on the UI thread)
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
|
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)
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. |