io.opentelemetry.api.metrics.BoundLongCounter Maven / Gradle / Ivy
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.api.metrics;
import io.opentelemetry.context.Context;
import javax.annotation.concurrent.ThreadSafe;
/** A counter instrument that records {@code long} values with pre-associated attributes. */
@ThreadSafe
public interface BoundLongCounter {
/**
* Records a value with pre-bound attributes.
*
* Note: This may use {@code Context.current()} to pull the context associated with this
* measurement.
*
* @param value The increment amount. MUST be non-negative.
*/
void add(long value);
/**
* Records a value with pre-bound attributes.
*
* @param value The increment amount. MUST be non-negative.
* @param context The explicit context to associate with this measurement.
*/
void add(long value, Context context);
/**
* Unbinds the current bound instance from the {@link LongCounter}.
*
*
After this method returns the current instance is considered invalid (not being managed by
* the instrument).
*/
void unbind();
}