-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid missing streams when relistening to broadcast StreamGroup (dart…
…-archive/async#184) In a broadcast `StreamGroup` when all listeners have canceled the inner subscriptions are kept only for single subscriber streams. When a new listener is added and subscriptions need to be recreated for inner broadcast streams the presence of a single subscriber subscription in the collection of subscriptions would cause the listen to bail out early and fail to subscribe to later broadcast streams. Change `return` to `continue` to keep going with the rest of the streams.
- Loading branch information
Showing
3 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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