Skip to content

Commit 79f173e

Browse files
committed
update async_queue.dart
1 parent 9f33323 commit 79f173e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/async/async_queue.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class AsyncQueue<T> {
2525
static const _timeout = Duration(seconds: 30);
2626

2727
final _blockS = StreamController<_AsyncQueueEntry<T>>();
28-
final _countS = StreamController<int>();
28+
final _countS = StreamController<int>(sync: true);
2929
late final DisposeBag _bag;
3030

3131
/// Construct [AsyncQueue].

0 commit comments

Comments
 (0)