Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mac: queue notifications when transmit buffer is full. fixes #6 #7

Merged
merged 1 commit into from
Mar 31, 2025

Conversation

spr0u
Copy link

@spr0u spr0u commented Mar 28, 2025

If an updateValue call fails due to no space in the underlying transmit queue, add it to a pending notifications queue and send it when CoreBluetooth signals that there is space available.

Tested as described in #6.

@stoprocent
Copy link
Owner

This is an acceptable temporary solution, but it's not ideal. I'd prefer handling notifications via a queue—something like a serial NSOperationQueue. Then we could easily start or pause notifications as needed. Otherwise, we risk generating notifications out of their intended order.

@spr0u
Copy link
Author

spr0u commented Mar 29, 2025

I'm not sure about the NSOperationQueue - each notification operation would need to be able to fail but still keep its position in the queue so that it can be retried later. This doesn't appear to be supported by NSOperationQueue.

Notifications are already exclusively sent on the serial dispatch queue, though one of the code paths attempts to send a notification immediately and bypass the pendingNotifications buffer. This could cause reordering depending on CoreBluetooth's implementation, so the safe bet would be to always append to the buffer and consume from it when sending.

@stoprocent
Copy link
Owner

This is great!

@stoprocent stoprocent merged commit 71df689 into stoprocent:main Mar 31, 2025
13 of 15 checks passed
Copy link

🎉 This PR is included in version 0.8.6 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants