followsFrom method

Reference followsFrom(
  1. SpanContext spanContext
)

Returns a new FollowsFrom reference.

Some parent Spans do not depend in any way on the result of their child Spans. In these cases, we say merely that the child Span “FollowsFrom” the parent Span in a causal sense.

Implementation

Reference followsFrom(SpanContext spanContext) {
  return Reference.followsFrom(spanContext);
}