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

Unified Diff: lib/src/result/release_sink.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/src/result/future.dart ('k') | lib/src/result/release_transformer.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/result/release_sink.dart
diff --git a/lib/src/result/release_sink.dart b/lib/src/result/release_sink.dart
new file mode 100644
index 0000000000000000000000000000000000000000..114981b66a3e77866208a470e15b6dbfa603b811
--- /dev/null
+++ b/lib/src/result/release_sink.dart
@@ -0,0 +1,34 @@
+// Copyright (c) 2016, 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.
+
+import 'dart:async';
+
+import '../result.dart';
+
+/// Use [Result.captureSinkTransformer].
+@Deprecated("Will be removed in async 2.0.0.")
+class ReleaseSink<T> implements EventSink<Result<T>> {
+ final EventSink _sink;
+
+ ReleaseSink(EventSink<T> sink) : _sink = sink;
+
+ void add(Result<T> result) {
+ if (result.isValue) {
+ _sink.add(result.asValue.value);
+ } else {
+ var error = result.asError;
+ _sink.addError(error.error, error.stackTrace);
+ }
+ }
+
+ void addError(Object error, [StackTrace stackTrace]) {
+ // Errors may be added by intermediate processing, even if it is never
+ // added by CaptureSink.
+ _sink.addError(error, stackTrace);
+ }
+
+ void close() {
+ _sink.close();
+ }
+}
« no previous file with comments | « lib/src/result/future.dart ('k') | lib/src/result/release_transformer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698