cliReader is an implementation of Reader that will automatically report to a designated Exporter when Shutdown is called.
| 186 | // cliReader is an implementation of Reader that will automatically |
| 187 | // report to a designated Exporter when Shutdown is called. |
| 188 | type cliReader struct { |
| 189 | sdkmetric.Reader |
| 190 | exporter sdkmetric.Exporter |
| 191 | } |
| 192 | |
| 193 | func newCLIReader(exp sdkmetric.Exporter) sdkmetric.Reader { |
| 194 | reader := sdkmetric.NewManualReader( |
nothing calls this directly
no outgoing calls
no test coverage detected