Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(375)

Side by Side Diff: lib/src/delegate/stream_consumer.dart

Issue 1777453002: Modernize the package's style. (Closed) Base URL: git@github.com:dart-lang/async.git@master
Patch Set: Code review changes Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « lib/src/delegate/sink.dart ('k') | lib/src/delegate/stream_sink.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library async.delegate.stream_consumer;
6
7 import 'dart:async'; 5 import 'dart:async';
8 6
9 /// Simple delegating wrapper around a [StreamConsumer]. 7 /// Simple delegating wrapper around a [StreamConsumer].
10 /// 8 ///
11 /// Subclasses can override individual methods, or use this to expose only the 9 /// Subclasses can override individual methods, or use this to expose only the
12 /// [StreamConsumer] methods of a subclass. 10 /// [StreamConsumer] methods of a subclass.
13 class DelegatingStreamConsumer<T> implements StreamConsumer<T> { 11 class DelegatingStreamConsumer<T> implements StreamConsumer<T> {
14 final StreamConsumer _consumer; 12 final StreamConsumer _consumer;
15 13
16 /// Create a delegating consumer forwarding calls to [consumer]. 14 /// Create a delegating consumer forwarding calls to [consumer].
17 DelegatingStreamConsumer(StreamConsumer consumer) 15 DelegatingStreamConsumer(StreamConsumer consumer)
18 : _consumer = consumer; 16 : _consumer = consumer;
19 17
20 Future addStream(Stream<T> stream) => _consumer.addStream(stream); 18 Future addStream(Stream<T> stream) => _consumer.addStream(stream);
21 19
22 Future close() => _consumer.close(); 20 Future close() => _consumer.close();
23 } 21 }
OLDNEW
« no previous file with comments | « lib/src/delegate/sink.dart ('k') | lib/src/delegate/stream_sink.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698