@inheritDoc
public function end(?int $endEpochNanos = null) : void { if ($this->hasEnded) { return; } $this->endEpochNanos = $endEpochNanos ?? Clock::getDefault()->now(); $this->hasEnded = true; $this->checkForDroppedElements(); $this->spanProcessor ->onEnd($this); }