goodmetrics.pipeline.MetricsSink.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of goodmetrics-kotlin Show documentation
Show all versions of goodmetrics-kotlin Show documentation
A metrics recording library that is good
package goodmetrics.pipeline
import goodmetrics.Metrics
interface MetricsSink : AutoCloseable {
fun emit(metrics: Metrics)
}