public class CacheRegionInfo extends Object
Constructor and Description |
---|
CacheRegionInfo(String cacheName,
int cacheSize,
String cacheStatus,
String cacheStatistics,
int hitCountRam,
int hitCountAux,
int missCountNotFound,
int missCountExpired,
long byteCount)
Parameterized constructor
|
Modifier and Type | Method and Description |
---|---|
long |
getByteCount() |
String |
getCacheName() |
int |
getCacheSize() |
String |
getCacheStatistics()
Return the statistics for the region.
|
String |
getCacheStatus() |
int |
getHitCountAux() |
int |
getHitCountRam() |
int |
getMissCountExpired() |
int |
getMissCountNotFound() |
String |
toString() |
@ConstructorProperties(value={"cacheName","cacheSize","cacheStatus","cacheStatistics","hitCountRam","hitCountAux","missCountNotFound","missCountExpired","byteCount"}) public CacheRegionInfo(String cacheName, int cacheSize, String cacheStatus, String cacheStatistics, int hitCountRam, int hitCountAux, int missCountNotFound, int missCountExpired, long byteCount)
cacheName
- The name of the cache regioncacheSize
- The size of the cache regioncacheStatus
- The status of the cache regioncacheStatistics
- The statistics of the cache regionhitCountRam
- The number of memory hits in the cache regionhitCountAux
- The number of auxiliary hits in the cache regionmissCountNotFound
- The number of misses in the cache region because the items were not foundmissCountExpired
- The number of misses in the cache region because the items were expiredbyteCount
- The number of bytes counted so far, will be a total of all itemspublic String getCacheName()
public int getCacheSize()
public String getCacheStatus()
public String getCacheStatistics()
public int getHitCountRam()
public int getHitCountAux()
public int getMissCountNotFound()
public int getMissCountExpired()
public long getByteCount()
Copyright © 2002–2018 The Apache Software Foundation. All rights reserved.