Package io.micronaut.tracing.opentracing
Record Class OpenTracingPropagationContext
java.lang.Object
java.lang.Record
io.micronaut.tracing.opentracing.OpenTracingPropagationContext
- Record Components:
tracer
- The tracerspan
- The span
- All Implemented Interfaces:
io.micronaut.core.propagation.PropagatedContextElement
,io.micronaut.core.propagation.ThreadPropagatedContextElement<io.opentracing.Scope>
@Internal
public record OpenTracingPropagationContext(io.opentracing.Tracer tracer, io.opentracing.Span span)
extends Record
implements io.micronaut.core.propagation.ThreadPropagatedContextElement<io.opentracing.Scope>
The open tracing propagated context.
- Author:
- Denis Stepanov
-
Constructor Summary
ConstructorDescriptionOpenTracingPropagationContext
(io.opentracing.Tracer tracer, io.opentracing.Span span) Creates an instance of aOpenTracingPropagationContext
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.void
restoreThreadContext
(io.opentracing.Scope oldScope) io.opentracing.Span
span()
Returns the value of thespan
record component.final String
toString()
Returns a string representation of this record class.io.opentracing.Tracer
tracer()
Returns the value of thetracer
record component.io.opentracing.Scope
-
Constructor Details
-
OpenTracingPropagationContext
public OpenTracingPropagationContext(io.opentracing.Tracer tracer, io.opentracing.Span span) Creates an instance of aOpenTracingPropagationContext
record class.
-
-
Method Details
-
updateThreadContext
public io.opentracing.Scope updateThreadContext()- Specified by:
updateThreadContext
in interfaceio.micronaut.core.propagation.ThreadPropagatedContextElement<io.opentracing.Scope>
-
restoreThreadContext
public void restoreThreadContext(io.opentracing.Scope oldScope) - Specified by:
restoreThreadContext
in interfaceio.micronaut.core.propagation.ThreadPropagatedContextElement<io.opentracing.Scope>
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
tracer
public io.opentracing.Tracer tracer()Returns the value of thetracer
record component.- Returns:
- the value of the
tracer
record component
-
span
public io.opentracing.Span span()Returns the value of thespan
record component.- Returns:
- the value of the
span
record component
-