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

org.apache.rocketmq.shaded.io.opentelemetry.sdk.metrics.internal.data.ImmutableValueAtQuantile Maven / Gradle / Ivy

There is a newer version: 5.0.7
Show newest version
/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.apache.rocketmq.shaded.io.opentelemetry.sdk.metrics.internal.data;

import org.apache.rocketmq.shaded.com.google.auto.value.AutoValue;
import org.apache.rocketmq.shaded.io.opentelemetry.sdk.metrics.data.ValueAtQuantile;
import javax.annotation.concurrent.Immutable;

/**
 * A summary metric value.
 *
 * 

This class is internal and is hence not for public use. Its APIs are unstable and can change * at any time */ @Immutable @AutoValue public abstract class ImmutableValueAtQuantile implements ValueAtQuantile { public static ValueAtQuantile create(double quantile, double value) { return new AutoValue_ImmutableValueAtQuantile(quantile, value); } ImmutableValueAtQuantile() {} }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy