All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ringcentral.platform.metrics.stub.StubStopWatch Maven / Gradle / Ivy

package com.ringcentral.platform.metrics.stub;

import com.ringcentral.platform.metrics.labels.LabelValues;
import com.ringcentral.platform.metrics.timer.Stopwatch;

public class StubStopWatch implements Stopwatch {

    @Override
    public long stop() {
        return 0L;
    }

    @Override
    public long stop(LabelValues labelValues) {
        return 0L;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy