Add QueueType.auto as default queueing - #304
Merged
Merged
Conversation
defaultPlatform resolves to a per-device queue on Android (its native BLE stack rejects overlapping operations) and to no queueing on all other platforms, which pipeline natively. It is now the default for both UniversalBle and UniversalBlePeripheral.
rohitsangwan01
approved these changes
Sep 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #297
Description
Adds a new
QueueType.autovalue that automatically selects the best queueing strategy per platform, without changing any native layer.mDeviceBusy, so serialization is required).none), since they pipeline natively. This eliminates the Dart-level head-of-line blocking that caused the write throughput degradation on Apple (see [Bug]: QueueType global and perDevice degradation on Apple #271).autois now the default for bothUniversalBle.queueTypeandUniversalBlePeripheral.queueType, achieving the issue's "zero-configuration concurrency" goal.Changes
lib/src/models/queue_type.dart: addedautoenum valuelib/src/utils/ble_command_queue.dart:_resolvedQueueTypegetter mapsauto→perDeviceon Android,noneelsewhere; new defaultlib/src/universal_ble.dart/lib/src/universal_ble_peripheral.dart: updated doc commentsexample/lib/home/home.dart: default toauto; toggle cycles all four valuesREADME.md/CHANGELOG.md: documented the new default and behaviortest/ble_command_queue_test.dart: existing default-global tests made explicit; added tests verifying Android queues per-device vs non-Android parallel (viadebugDefaultTargetPlatformOverride)Verification
flutter analyze— clean (package and example)flutter test— all 108 tests pass