Consume the given trace and destructively combines its contents.
(tr *Trace)
| 38 | |
| 39 | // Consume the given trace and destructively combines its contents. |
| 40 | func (c *Combiner) Consume(tr *Trace) (spanCount int) { |
| 41 | return c.ConsumeWithFinal(tr, false) |
| 42 | } |
| 43 | |
| 44 | // ConsumeWithFinal consumes the trace, but allows for performance savings when |
| 45 | // it is known that this is the last expected input trace. the spanCount returned |