protoDecoder implements the Decoder interface for protocol buffers.
| 82 | |
| 83 | // protoDecoder implements the Decoder interface for protocol buffers. |
| 84 | type protoDecoder struct { |
| 85 | r io.Reader |
| 86 | } |
| 87 | |
| 88 | // Decode implements the Decoder interface. |
| 89 | func (d *protoDecoder) Decode(v *dto.MetricFamily) error { |
nothing calls this directly
no outgoing calls
no test coverage detected