canonical / bluez.dart

Mozilla Public License 2.0
52 stars 20 forks source link

Support org.bluez.GattCharacteristic1.AcquireNotify() #81

Closed robert-ancell closed 2 years ago

robert-ancell commented 2 years ago

org.bluez.GattCharacteristic1.AcquireNotify() allows you to get a file descriptor to receive value updates on. While we can successfully pass the file descriptor and convert it to a RandomAccessFile this is not usable because Dart doesn't provide a way to know when this is readable and it throws an exception when there is no data available.

robert-ancell commented 2 years ago

Fixed in https://github.com/canonical/bluez.dart/pull/83