Class ServerStatisticsImpl
- java.lang.Object
-
- org.infinispan.client.hotrod.impl.ServerStatisticsImpl
-
- All Implemented Interfaces:
ServerStatistics
public class ServerStatisticsImpl extends Object implements ServerStatistics
- Since:
- 4.1
- Author:
- Mircea.Markus@jboss.com
-
-
Field Summary
-
Fields inherited from interface org.infinispan.client.hotrod.ServerStatistics
CURRENT_NR_OF_ENTRIES, HITS, MISSES, REMOVE_HITS, REMOVE_MISSES, RETRIEVALS, STORES, TIME_SINCE_START, TOTAL_NR_OF_ENTRIES
-
-
Constructor Summary
Constructors Constructor Description ServerStatisticsImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addStats(String name, String value)
Integer
getIntStatistic(String statsName)
String
getStatistic(String statsName)
Map<String,String>
getStatsMap()
-
-
-
Method Detail
-
getStatsMap
public Map<String,String> getStatsMap()
- Specified by:
getStatsMap
in interfaceServerStatistics
-
getStatistic
public String getStatistic(String statsName)
- Specified by:
getStatistic
in interfaceServerStatistics
-
getIntStatistic
public Integer getIntStatistic(String statsName)
- Specified by:
getIntStatistic
in interfaceServerStatistics
-
-