mirror of
https://gitee.com/san-bing/JChargePointProtocol
synced 2026-05-09 20:39:55 +08:00
云快充1.5.0 初始化
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
/**
|
||||
* 抖音关注:程序员三丙
|
||||
* 知识星球:https://t.zsxq.com/j9b21
|
||||
*/
|
||||
package sanbing.jcpp.infrastructure.stats;
|
||||
|
||||
public class DefaultMessagesStats implements MessagesStats {
|
||||
private final StatsCounter totalCounter;
|
||||
private final StatsCounter successfulCounter;
|
||||
private final StatsCounter failedCounter;
|
||||
|
||||
public DefaultMessagesStats(StatsCounter totalCounter, StatsCounter successfulCounter, StatsCounter failedCounter) {
|
||||
this.totalCounter = totalCounter;
|
||||
this.successfulCounter = successfulCounter;
|
||||
this.failedCounter = failedCounter;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void incrementTotal(int amount) {
|
||||
totalCounter.add(amount);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void incrementSuccessful(int amount) {
|
||||
successfulCounter.add(amount);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void incrementFailed(int amount) {
|
||||
failedCounter.add(amount);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getTotal() {
|
||||
return totalCounter.get();
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getSuccessful() {
|
||||
return successfulCounter.get();
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getFailed() {
|
||||
return failedCounter.get();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void reset() {
|
||||
totalCounter.clear();
|
||||
successfulCounter.clear();
|
||||
failedCounter.clear();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user