Record Class OpenTracingPropagationContext

java.lang.Object
java.lang.Record
io.micronaut.tracing.opentracing.OpenTracingPropagationContext
Record Components:
tracer - The tracer
span - 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

    Constructors
    Constructor
    Description
    OpenTracingPropagationContext(io.opentracing.Tracer tracer, io.opentracing.Span span)
    Creates an instance of a OpenTracingPropagationContext record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    void
    restoreThreadContext(io.opentracing.Scope oldScope)
     
    io.opentracing.Span
    Returns the value of the span record component.
    final String
    Returns a string representation of this record class.
    io.opentracing.Tracer
    Returns the value of the tracer record component.
    io.opentracing.Scope
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • OpenTracingPropagationContext

      public OpenTracingPropagationContext(io.opentracing.Tracer tracer, io.opentracing.Span span)
      Creates an instance of a OpenTracingPropagationContext record class.
      Parameters:
      tracer - the value for the tracer record component
      span - the value for the span record component
  • Method Details

    • updateThreadContext

      public io.opentracing.Scope updateThreadContext()
      Specified by:
      updateThreadContext in interface io.micronaut.core.propagation.ThreadPropagatedContextElement<io.opentracing.Scope>
    • restoreThreadContext

      public void restoreThreadContext(io.opentracing.Scope oldScope)
      Specified by:
      restoreThreadContext in interface io.micronaut.core.propagation.ThreadPropagatedContextElement<io.opentracing.Scope>
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • tracer

      public io.opentracing.Tracer tracer()
      Returns the value of the tracer record component.
      Returns:
      the value of the tracer record component
    • span

      public io.opentracing.Span span()
      Returns the value of the span record component.
      Returns:
      the value of the span record component