com.clickhouse.client.api.metrics.Metric Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-v2 Show documentation
Show all versions of client-v2 Show documentation
New client api for ClickHouse
The newest version!
package com.clickhouse.client.api.metrics;
public interface Metric {
/**
* Returns value of the metric as a long.
* @return value of the metric as a long
*/
long getLong();
}