blob: 3f31aa7cd8dc2cc1afe71876447447550fc840d2 [file] [log] [blame]
/*
* Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion Stream<T> asBroadcastStream ({void onListen(StreamSubscription<T>
* subscription), void onCancel(StreamSubscription<T> subscription)})
* Returns a multi-subscription stream that produces the same events as this.
* If this stream is already a broadcast stream, it is returned unmodified.
* @description Checks that if this stream is already a broadcast stream,
* returned stream is unmodified this stream.
* @author kaigorodov
*/
import "dart:async";
import "../../../Utils/expect.dart";
main() {
Stream<int> stream=new Stream<int>.fromIterable([1,2,3]);
Stream s1=stream.asBroadcastStream();
Stream s2=s1.asBroadcastStream();
Expect.identical(s1, s2);
}