Registers a callback to produce metric values for only the listed instruments. The returned registration must be closed when no longer needed, which will remove the callback. @param callback The callback to call to record. @param metricInstruments The metric instruments the callback will record aga
(Runnable callback,
CallbackMetricInstrument... metricInstruments)
| 132 | * @param metricInstruments The metric instruments the callback will record against. |
| 133 | */ |
| 134 | default Registration registerBatchCallback(Runnable callback, |
| 135 | CallbackMetricInstrument... metricInstruments) { |
| 136 | return () -> { }; |
| 137 | } |
no outgoing calls