Package io.opentelemetry.api.common
Interface AttributeConsumer
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface AttributeConsumer
Used for iterating over all the key/value pairs in anAttributes
instance.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> void
accept(AttributeKey<T> key, T value)
-
-
-
Method Detail
-
accept
<T> void accept(AttributeKey<T> key, T value)
-
-