You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+3-10Lines changed: 3 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -181,14 +181,7 @@ Discovery works differently between Android and iOS. In Android, a single functi
181
181
182
182
183
183
## Queuing (Android) ##
184
-
On Android, the plugin automatically queues the following operations:
185
-
* read
186
-
* write
187
-
* subscribe
188
-
* unsubscribe
189
-
* readDescriptor
190
-
* writeDescriptor
191
-
* notify
184
+
Read, write, subscribe, unsubscribe, readDescriptor and writeDescriptor queueing has been added to the master branch and will be part of the 4.1.0 release. If you'd like to try it out, install the plugin directly from GitHub using: ```cordova plugin https://github.com/randdusing/cordova-plugin-bluetoothle```
192
185
193
186
194
187
## UUIDs ##
@@ -1830,7 +1823,7 @@ Initialization works slightly different between Android and iOS. On iOS, you don
1830
1823
1831
1824
1832
1825
### Notifications ###
1833
-
Notifications work slightly differently between Android and iOS. Queueing for notifications is currently only implemented on Android. On Android, the notify() success callback will always include ```sent: true```. On iOS, if the sent property is set to false, you should wait until receiving the ```peripheralManagerIsReadyToUpdateSubscribers``` event to resend the notification. In future versions, I hope to standardize the functionality between platforms.
1826
+
Notifications work slightly differently between Android and iOS. On Android, you should wait for the ```notificationSent``` event before calling notify() again. On iOS, you need to check the notify() callback for the sent property. If the sent property is set to false, you should wait until receiving the ```peripheralManagerIsReadyToUpdateSubscribers``` event to resend the notification. In future versions, I hope to standardize the functionality between platforms.
0 commit comments