Index: sdk/lib/async/stream_pipe.dart |
diff --git a/sdk/lib/async/stream_pipe.dart b/sdk/lib/async/stream_pipe.dart |
index 34609924561d0f159ffc7c3595d4616dca61882c..1945bb263feb147028ac16725321baa858e494ef 100644 |
--- a/sdk/lib/async/stream_pipe.dart |
+++ b/sdk/lib/async/stream_pipe.dart |
@@ -51,7 +51,9 @@ abstract class _ForwardingStream<S, T> extends Stream<T> { |
_ForwardingStream(this._source); |
- bool get isSingleSubscription => _source.isSingleSubscription; |
+ bool get isBroadcast => _source.isBroadcast; |
+ |
+ bool asBroadcastStream() => _source.asBroadcastStream; |
StreamSubscription listen(void onData(T value), |
{ void onError(AsyncError error), |