spancontext.go 180 B

12345678
  1. package tracespec
  2. // SpanContext interface that represents a span context.
  3. type SpanContext interface {
  4. TraceId() string
  5. SpanId() string
  6. Visit(fn func(key, val string) bool)
  7. }