dependentresult.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // Copyright 2012 The Closure Library Authors. All Rights Reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS-IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. /**
  15. * @fileoverview An interface for Results whose eventual value depends on the
  16. * value of one or more other Results.
  17. */
  18. goog.provide('goog.result.DependentResult');
  19. goog.require('goog.result.Result');
  20. /**
  21. * A DependentResult represents a Result whose eventual value depends on the
  22. * value of one or more other Results. For example, the Result returned by
  23. * @see goog.result.chain or @see goog.result.combine is dependent on the
  24. * Results given as arguments.
  25. * @interface
  26. * @extends {goog.result.Result}
  27. * @deprecated Use {@link goog.Promise} instead - http://go/promisemigration
  28. */
  29. goog.result.DependentResult = function() {};
  30. /**
  31. *
  32. * @return {!Array<!goog.result.Result>} A list of Results which will affect
  33. * the eventual value of this Result. The returned Results may themselves
  34. * have parent results, which would be grandparents of this Result;
  35. * grandparents (and any other ancestors) are not included in this list.
  36. */
  37. goog.result.DependentResult.prototype.getParentResults = function() {};