type go.opentelemetry.io/otel/api/metric.BatchObserver

10 uses

	go.opentelemetry.io/otel/api/metric (current package)
		meter.go#L64: func (m Meter) NewBatchObserver(callback BatchObserverFunc) BatchObserver {
		meter.go#L65: 	return BatchObserver{
		meter.go#L207: func (b BatchObserver) NewInt64ValueObserver(name string, opts ...InstrumentOption) (Int64ValueObserver, error) {
		meter.go#L219: func (b BatchObserver) NewFloat64ValueObserver(name string, opts ...InstrumentOption) (Float64ValueObserver, error) {
		meter.go#L232: func (b BatchObserver) NewInt64SumObserver(name string, opts ...InstrumentOption) (Int64SumObserver, error) {
		meter.go#L244: func (b BatchObserver) NewFloat64SumObserver(name string, opts ...InstrumentOption) (Float64SumObserver, error) {
		meter.go#L257: func (b BatchObserver) NewInt64UpDownSumObserver(name string, opts ...InstrumentOption) (Int64UpDownSumObserver, error) {
		meter.go#L269: func (b BatchObserver) NewFloat64UpDownSumObserver(name string, opts ...InstrumentOption) (Float64UpDownSumObserver, error) {
		must.go#L26: 	batch BatchObserver
		observer.go#L19: type BatchObserver struct {