All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.lucene.sandbox.search.ProfilerCollectorResult Maven / Gradle / Ivy

There is a newer version: 9.11.1
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.lucene.sandbox.search;

import java.util.List;

/**
 * Public class for profiled timings of the Collectors used in the search. Children
 * CollectorResult's may be embedded inside of a parent CollectorResult
 */
public class ProfilerCollectorResult {

  /** A more friendly representation of the Collector's class name */
  private final String collectorName;

  /** A "hint" to help provide some context about this Collector */
  private final String reason;

  /** The total elapsed time for this Collector */
  private final long time;

  /** A list of children collectors "embedded" inside this collector */
  private final List children;

  public ProfilerCollectorResult(
      String collectorName, String reason, Long time, List children) {
    this.collectorName = collectorName;
    this.reason = reason;
    this.time = time;
    this.children = children;
  }

  /**
   * @return the profiled time for this collector (inclusive of children)
   */
  public long getTime() {
    return this.time;
  }

  /**
   * @return a human readable "hint" about what this collector was used for
   */
  public String getReason() {
    return this.reason;
  }

  /**
   * @return the lucene class name of the collector
   */
  public String getName() {
    return this.collectorName;
  }

  /**
   * @return a list of children collectors
   */
  public List getProfiledChildren() {
    return children;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy