nharmata | 5b354e6 | 2017-05-09 16:09:49 -0400 | [diff] [blame] | 1 | // Copyright 2017 The Bazel 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 | package com.google.devtools.build.skyframe; |
| 15 | |
nharmata | 5b354e6 | 2017-05-09 16:09:49 -0400 | [diff] [blame] | 16 | import com.google.common.collect.ImmutableList; |
| 17 | |
| 18 | /** |
Googler | 63534fa | 2019-04-09 10:13:30 -0700 | [diff] [blame] | 19 | * An {@link EvaluationProgressReceiver} that delegates to a bunch of other {@link |
| 20 | * EvaluationProgressReceiver}s. |
nharmata | 5b354e6 | 2017-05-09 16:09:49 -0400 | [diff] [blame] | 21 | */ |
Googler | 63534fa | 2019-04-09 10:13:30 -0700 | [diff] [blame] | 22 | public final class CompoundEvaluationProgressReceiver |
| 23 | extends CompoundEvaluationProgressReceiverBase { |
nharmata | 2a5e3b1 | 2019-05-30 15:11:19 -0700 | [diff] [blame] | 24 | public CompoundEvaluationProgressReceiver( |
nharmata | 5b354e6 | 2017-05-09 16:09:49 -0400 | [diff] [blame] | 25 | ImmutableList<? extends EvaluationProgressReceiver> receivers) { |
Googler | 63534fa | 2019-04-09 10:13:30 -0700 | [diff] [blame] | 26 | super(receivers); |
nharmata | 5b354e6 | 2017-05-09 16:09:49 -0400 | [diff] [blame] | 27 | } |
nharmata | 5b354e6 | 2017-05-09 16:09:49 -0400 | [diff] [blame] | 28 | } |