blob: ce3b0c4a3b12878f3f4f056db7030b16ed2888f2 [file] [log] [blame]
nharmata5b354e62017-05-09 16:09:49 -04001// 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.
14package com.google.devtools.build.skyframe;
15
nharmata5b354e62017-05-09 16:09:49 -040016import com.google.common.collect.ImmutableList;
17
18/**
Googler63534fa2019-04-09 10:13:30 -070019 * An {@link EvaluationProgressReceiver} that delegates to a bunch of other {@link
20 * EvaluationProgressReceiver}s.
nharmata5b354e62017-05-09 16:09:49 -040021 */
Googler63534fa2019-04-09 10:13:30 -070022public final class CompoundEvaluationProgressReceiver
23 extends CompoundEvaluationProgressReceiverBase {
nharmata2a5e3b12019-05-30 15:11:19 -070024 public CompoundEvaluationProgressReceiver(
nharmata5b354e62017-05-09 16:09:49 -040025 ImmutableList<? extends EvaluationProgressReceiver> receivers) {
Googler63534fa2019-04-09 10:13:30 -070026 super(receivers);
nharmata5b354e62017-05-09 16:09:49 -040027 }
nharmata5b354e62017-05-09 16:09:49 -040028}