GeneratorCodec is the interface used to convert data from Kafka records to the tempopb.PushSpansRequest expected by the generator processors.
| 152 | // GeneratorCodec is the interface used to convert data from Kafka records to the |
| 153 | // tempopb.PushSpansRequest expected by the generator processors. |
| 154 | type GeneratorCodec interface { |
| 155 | Decode([]byte) (iter.Seq2[*tempopb.PushSpansRequest, error], error) |
| 156 | } |
| 157 | |
| 158 | // PushBytesDecoder unmarshals tempopb.PushBytesRequest. |
| 159 | type PushBytesDecoder struct { |
no outgoing calls
no test coverage detected