Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/result/dependentresult.js
2868 views
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
/**
16
* @fileoverview An interface for Results whose eventual value depends on the
17
* value of one or more other Results.
18
*/
19
20
goog.provide('goog.result.DependentResult');
21
22
goog.require('goog.result.Result');
23
24
25
26
/**
27
* A DependentResult represents a Result whose eventual value depends on the
28
* value of one or more other Results. For example, the Result returned by
29
* @see goog.result.chain or @see goog.result.combine is dependent on the
30
* Results given as arguments.
31
* @interface
32
* @extends {goog.result.Result}
33
* @deprecated Use {@link goog.Promise} instead - http://go/promisemigration
34
*/
35
goog.result.DependentResult = function() {};
36
37
38
/**
39
*
40
* @return {!Array<!goog.result.Result>} A list of Results which will affect
41
* the eventual value of this Result. The returned Results may themselves
42
* have parent results, which would be grandparents of this Result;
43
* grandparents (and any other ancestors) are not included in this list.
44
*/
45
goog.result.DependentResult.prototype.getParentResults = function() {};
46
47