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

Function NewWriter

tempodb/backend/raw.go:86–90  ·  view source on GitHub ↗

NewWriter returns an object that implements Writer and bridges to a RawWriter

(w RawWriter)

Source from the content-addressed store, hash-verified

84
85// NewWriter returns an object that implements Writer and bridges to a RawWriter
86func NewWriter(w RawWriter) Writer {
87 return &writer{
88 w: w,
89 }
90}
91
92// TODO: these objects are not raw, so perhaps they could move somewhere else.
93// var (

Calls

no outgoing calls