Beispiel #1
0
 @Override
 public int getReleasedSharedLocks() {
   return pageCacheMonitor.countReleasedSharedLocks();
 }
Beispiel #2
0
 @Override
 public int getFlushes() {
   return pageCacheMonitor.countFlushes();
 }
Beispiel #3
0
 @Override
 public int getReleasedExclusiveLocks() {
   return pageCacheMonitor.countReleasedExclusiveLocks();
 }
Beispiel #4
0
 @Override
 public int getTakenSharedLocks() {
   return pageCacheMonitor.countTakenSharedLocks();
 }
Beispiel #5
0
 @Override
 public int getTakenExclusiveLocks() {
   return pageCacheMonitor.countTakenExclusiveLocks();
 }
Beispiel #6
0
 @Override
 public int getUnpins() {
   return pageCacheMonitor.countUnpins();
 }
Beispiel #7
0
 @Override
 public int getEvictions() {
   return pageCacheMonitor.countEvictions();
 }