MCPcopy
hub / github.com/grafana/tempo / newAsyncResponse

Function newAsyncResponse

modules/frontend/pipeline/responses.go:105–111  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

103}
104
105func newAsyncResponse() *asyncResponse {
106 return &asyncResponse{
107 respChan: make(chan Responses[combiner.PipelineResponse]),
108 errChan: make(chan error, 1),
109 err: atomic.NewError(nil),
110 }
111}
112
113func (a *asyncResponse) Send(ctx context.Context, r Responses[combiner.PipelineResponse]) {
114 select {

Calls

no outgoing calls