blob: edc41fb4846fe2389019736105626d7b3319373b [file] [log] [blame]
// 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';
import 'error.dart';
/// A result representing a returned value.
class ValueResult<T> implements Result<T> {
/// The result of a successful computation.
final T value;
bool get isValue => true;
bool get isError => false;
ValueResult<T> get asValue => this;
ErrorResult get asError => null;
ValueResult(this.value);
void complete(Completer<T> completer) {
completer.complete(value);
}
void addTo(EventSink<T> sink) {
sink.add(value);
}
Future<T> get asFuture => new Future.value(value);
int get hashCode => value.hashCode ^ 0x323f1d61;
bool operator ==(Object other) =>
other is ValueResult && value == other.value;
}