mirror of
https://gitee.com/san-bing/JChargePointProtocol
synced 2026-05-05 10:29:56 +08:00
25 lines
644 B
Java
25 lines
644 B
Java
/**
|
||
* 开源代码,仅供学习和交流研究使用,商用请联系三丙
|
||
* 微信:mohan_88888
|
||
* 抖音:程序员三丙
|
||
* 付费课程知识星球:https://t.zsxq.com/aKtXo
|
||
*/
|
||
package sanbing.jcpp.infrastructure.stats;
|
||
|
||
import io.micrometer.core.instrument.Counter;
|
||
|
||
import java.util.concurrent.atomic.AtomicInteger;
|
||
|
||
public class StatsCounter extends DefaultCounter {
|
||
private final String name;
|
||
|
||
public StatsCounter(AtomicInteger aiCounter, Counter micrometerCounter, String name) {
|
||
super(aiCounter, micrometerCounter);
|
||
this.name = name;
|
||
}
|
||
|
||
public String getName() {
|
||
return name;
|
||
}
|
||
}
|