blob: 08e33953b266973e253783b53810006e2150338c [file] [log] [blame]
/*
* Copyright 2016 The Bazel Authors. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.idea.blaze.base.trace;
import com.google.idea.blaze.base.scope.Output;
import org.jetbrains.annotations.NotNull;
/**
* Trace event.
*/
public class TraceEvent implements Output {
public final String name;
public final Type type;
public final long nanoTime;
public long threadId;
public enum Type {
Begin,
End,
}
public TraceEvent(@NotNull String name, @NotNull Type type) {
this.name = name;
this.type = type;
this.nanoTime = System.nanoTime();
this.threadId = Thread.currentThread().getId();
}
}