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

Unified Diff: lib/src/result/capture_sink.dart

Issue 2996143002: Add methods to Result. Bump version to 2.0 and remove deprecated features. (Closed)
Patch Set: Created 3 years, 4 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
Index: lib/src/result/capture_sink.dart
diff --git a/lib/src/result/capture_sink.dart b/lib/src/result/capture_sink.dart
deleted file mode 100644
index 74745251dc86c90662d3b71a72429e8694771ad0..0000000000000000000000000000000000000000
--- a/lib/src/result/capture_sink.dart
+++ /dev/null
@@ -1,27 +0,0 @@
-// 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 CaptureSink<T> implements EventSink<T> {
- final EventSink _sink;
-
- CaptureSink(EventSink<Result<T>> sink) : _sink = sink;
-
- void add(T value) {
- _sink.add(new Result.value(value));
- }
-
- void addError(Object error, [StackTrace stackTrace]) {
- _sink.add(new Result.error(error, stackTrace));
- }
-
- void close() {
- _sink.close();
- }
-}

Powered by Google App Engine
This is Rietveld 408576698