Is there an analog to the `BleManagerCallbacks.onLinkLossOccurred` method where I can receive a notification of when a central re-connects to its peripheral?
Is there an analog to the `BleManagerCallbacks.onLinkLossOccurred` method where I can receive a notification of when a central re-connects to its peripheral?
Hi,
On each connection you get this BleManagerCallbacks.onDeviceDisconnected callback (deprecated now, just like onLinkLossOccurred) and ConnectionObserver. onDeviceConnected (new observer). They are also called when the connection was automatic due to 'useAutoConnect = true`.
Thank you!
Thank you!