Consume the given trace and destructively combines its contents.
(tr *tempopb.Trace)
| 44 | |
| 45 | // Consume the given trace and destructively combines its contents. |
| 46 | func (c *Combiner) Consume(tr *tempopb.Trace) (int, error) { |
| 47 | return c.ConsumeWithFinal(tr, false) |
| 48 | } |
| 49 | |
| 50 | // ConsumeWithFinal consumes the trace, but allows for performance savings when |
| 51 | // it is known that this is the last expected input trace. |