Package com.io7m.idstore.database.api
Record Class IdDatabaseTelemetry
java.lang.Object
java.lang.Record
com.io7m.idstore.database.api.IdDatabaseTelemetry
- Record Components:
isNoOp-trueif telemetry is in no-op modemeter- The metertracer- The tracer
public record IdDatabaseTelemetry(boolean isNoOp, io.opentelemetry.api.metrics.Meter meter, io.opentelemetry.api.trace.Tracer tracer)
extends Record
Interfaces used for database telemetry.
-
Constructor Summary
ConstructorsConstructorDescriptionIdDatabaseTelemetry(boolean isNoOp, io.opentelemetry.api.metrics.Meter meter, io.opentelemetry.api.trace.Tracer tracer) Interfaces used for database telemetry. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanisNoOp()Returns the value of theisNoOprecord component.io.opentelemetry.api.metrics.Metermeter()Returns the value of themeterrecord component.final StringtoString()Returns a string representation of this record class.io.opentelemetry.api.trace.Tracertracer()Returns the value of thetracerrecord component.
-
Constructor Details
-
IdDatabaseTelemetry
public IdDatabaseTelemetry(boolean isNoOp, io.opentelemetry.api.metrics.Meter meter, io.opentelemetry.api.trace.Tracer tracer) Interfaces used for database telemetry.- Parameters:
isNoOp-trueif telemetry is in no-op modemeter- The metertracer- The tracer
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
isNoOp
public boolean isNoOp()Returns the value of theisNoOprecord component.- Returns:
- the value of the
isNoOprecord component
-
meter
public io.opentelemetry.api.metrics.Meter meter()Returns the value of themeterrecord component.- Returns:
- the value of the
meterrecord component
-
tracer
public io.opentelemetry.api.trace.Tracer tracer()Returns the value of thetracerrecord component.- Returns:
- the value of the
tracerrecord component
-