* associated with this EEWebModuleStatsImpl.
*
* @return Current number of sessions cached in memory
*/
public CountStatistic getCachedSessionsCurrent() {
ReplicationManagerBase sessMgr = this.getSessionManager();
if (sessMgr == null) {
cachedSessionsCurrent.setCount(-1);
} else {
long cachedSessionsSize = sessMgr.getSessionsCacheSize();
cachedSessionsCurrent.setCount(cachedSessionsSize);
}
return (CountStatistic) cachedSessionsCurrent.unmodifiableView();
}