blob: 5d45b81032a2b9170e7d1b85077d6e7b64bfa286 [file] [log] [blame]
Klaus Aehlig280a6712017-06-23 21:12:47 +02001// Copyright 2016 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
15package com.google.devtools.build.lib.analysis;
16
Klaus Aehligf06e3702017-09-18 19:17:57 +020017import com.google.devtools.build.lib.buildeventstream.BuildCompletingEvent;
Klaus Aehlig280a6712017-06-23 21:12:47 +020018import com.google.devtools.build.lib.util.ExitCode;
Klaus Aehlig280a6712017-06-23 21:12:47 +020019
nharmataf4023b92018-11-07 14:33:51 -080020/** {@link BuildEvent} indicating that a request that does not involve building as finished. */
Klaus Aehligf06e3702017-09-18 19:17:57 +020021public final class NoBuildRequestFinishedEvent extends BuildCompletingEvent {
Klaus Aehlig280a6712017-06-23 21:12:47 +020022 public NoBuildRequestFinishedEvent(ExitCode exitCode, long finishTimeMillis) {
dmaclachba7df7d2019-11-07 07:46:56 -080023 super(exitCode, finishTimeMillis, false);
Klaus Aehlig280a6712017-06-23 21:12:47 +020024 }
25}