Klaus Aehlig | 280a671 | 2017-06-23 21:12:47 +0200 | [diff] [blame] | 1 | // 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 | |
| 15 | package com.google.devtools.build.lib.analysis; |
| 16 | |
Klaus Aehlig | f06e370 | 2017-09-18 19:17:57 +0200 | [diff] [blame] | 17 | import com.google.devtools.build.lib.buildeventstream.BuildCompletingEvent; |
Klaus Aehlig | 280a671 | 2017-06-23 21:12:47 +0200 | [diff] [blame] | 18 | import com.google.devtools.build.lib.util.ExitCode; |
Klaus Aehlig | 280a671 | 2017-06-23 21:12:47 +0200 | [diff] [blame] | 19 | |
nharmata | f4023b9 | 2018-11-07 14:33:51 -0800 | [diff] [blame] | 20 | /** {@link BuildEvent} indicating that a request that does not involve building as finished. */ |
Klaus Aehlig | f06e370 | 2017-09-18 19:17:57 +0200 | [diff] [blame] | 21 | public final class NoBuildRequestFinishedEvent extends BuildCompletingEvent { |
Klaus Aehlig | 280a671 | 2017-06-23 21:12:47 +0200 | [diff] [blame] | 22 | public NoBuildRequestFinishedEvent(ExitCode exitCode, long finishTimeMillis) { |
dmaclach | ba7df7d | 2019-11-07 07:46:56 -0800 | [diff] [blame] | 23 | super(exitCode, finishTimeMillis, false); |
Klaus Aehlig | 280a671 | 2017-06-23 21:12:47 +0200 | [diff] [blame] | 24 | } |
| 25 | } |