Exemplo n.º 1
0
 /** {@inheritDoc} */
 public String getStatus() {
   return sampledCacheManagerDelegate.getStatus();
 }
Exemplo n.º 2
0
 /** @return aggregate in-memory miss rate */
 public long getCacheInMemoryMissRate() {
   return sampledCacheManagerDelegate.getCacheInMemoryMissRate();
 }
Exemplo n.º 3
0
 /** Returns if each contained cache is enabled. */
 public boolean isEnabled() throws CacheException {
   return sampledCacheManagerDelegate.isEnabled();
 }
Exemplo n.º 4
0
 /** {@inheritDoc} */
 public void clearAll() {
   sampledCacheManagerDelegate.clearAll();
   sendNotification(CACHES_CLEARED);
 }
Exemplo n.º 5
0
 /** {@inheritDoc} */
 public long getTransactionCommitRate() {
   return sampledCacheManagerDelegate.getTransactionCommitRate();
 }
Exemplo n.º 6
0
 /** {@inheritDoc} */
 public long getTransactionRollbackRate() {
   return sampledCacheManagerDelegate.getTransactionRollbackRate();
 }
Exemplo n.º 7
0
 /** @return aggregate search time */
 public long getCacheAverageSearchTime() {
   return sampledCacheManagerDelegate.getCacheAverageSearchTime();
 }
Exemplo n.º 8
0
 /** {@inheritDoc} */
 public boolean getTransactional() {
   return sampledCacheManagerDelegate.getTransactional();
 }
Exemplo n.º 9
0
 /** @return aggregate average get time (ms.) */
 public float getCacheAverageGetTime() {
   return sampledCacheManagerDelegate.getCacheAverageGetTime();
 }
Exemplo n.º 10
0
 /** @return aggregate search rate */
 public long getCacheSearchRate() {
   return sampledCacheManagerDelegate.getCacheSearchRate();
 }
Exemplo n.º 11
0
 /** @return aggregate expiration rate */
 public long getCacheExpirationRate() {
   return sampledCacheManagerDelegate.getCacheExpirationRate();
 }
Exemplo n.º 12
0
 /** @return aggregate remove rate */
 public long getCacheRemoveRate() {
   return sampledCacheManagerDelegate.getCacheRemoveRate();
 }
Exemplo n.º 13
0
 /** @return aggregate on-disk miss rate */
 public long getCacheOnDiskMissRate() {
   return sampledCacheManagerDelegate.getCacheOnDiskMissRate();
 }
Exemplo n.º 14
0
 /** @see net.sf.ehcache.management.sampled.SampledCacheManager#getClusterUUID() */
 public String getClusterUUID() {
   return sampledCacheManagerDelegate.getClusterUUID();
 }
Exemplo n.º 15
0
 /** {@inheritDoc} */
 public boolean getHasWriteBehindWriter() {
   return sampledCacheManagerDelegate.getHasWriteBehindWriter();
 }
Exemplo n.º 16
0
 /**
  * generateActiveConfigDeclaration
  *
  * @return Cache configuration as String
  */
 public String generateActiveConfigDeclaration(String cacheName) {
   return sampledCacheManagerDelegate.generateActiveConfigDeclaration(cacheName);
 }
Exemplo n.º 17
0
 /** @return aggregate writer queue length */
 public long getWriterQueueLength() {
   return sampledCacheManagerDelegate.getWriterQueueLength();
 }
Exemplo n.º 18
0
 /** {@inheritDoc} */
 public boolean getSearchable() {
   return sampledCacheManagerDelegate.getSearchable();
 }
Exemplo n.º 19
0
 /** {@inheritDoc} */
 public int getWriterMaxQueueSize() {
   return sampledCacheManagerDelegate.getWriterMaxQueueSize();
 }
Exemplo n.º 20
0
 /** {@inheritDoc} */
 public long getTransactionRolledBackCount() {
   return sampledCacheManagerDelegate.getTransactionRolledBackCount();
 }
Exemplo n.º 21
0
 /** {@inheritDoc} */
 public void setMaxBytesLocalHeapAsString(String maxBytes) {
   sampledCacheManagerDelegate.setMaxBytesLocalHeapAsString(maxBytes);
   sendNotification(CACHE_MANAGER_CHANGED, getCacheManagerAttributes(), getName());
 }
Exemplo n.º 22
0
 /** {@inheritDoc} */
 public long getTransactionTimedOutCount() {
   return sampledCacheManagerDelegate.getTransactionTimedOutCount();
 }
Exemplo n.º 23
0
 /** {@inheritDoc} */
 public long getMaxBytesLocalOffHeap() {
   return sampledCacheManagerDelegate.getMaxBytesLocalOffHeap();
 }
Exemplo n.º 24
0
 /** Enables/disables each of the contained caches. */
 public void setEnabled(boolean enabled) {
   sampledCacheManagerDelegate.setEnabled(enabled);
   sendNotification(CACHES_ENABLED, enabled);
 }
Exemplo n.º 25
0
 /** {@inheritDoc} */
 public String getMaxBytesLocalOffHeapAsString() {
   return sampledCacheManagerDelegate.getMaxBytesLocalOffHeapAsString();
 }
Exemplo n.º 26
0
 /** {@inheritDoc} */
 public String[] getCacheNames() throws IllegalStateException {
   return sampledCacheManagerDelegate.getCacheNames();
 }
Exemplo n.º 27
0
 /**
  * {@inheritDoc}
  *
  * @see net.sf.ehcache.management.sampled.SampledCacheManager#getName()
  */
 public String getName() {
   return sampledCacheManagerDelegate.getName();
 }
Exemplo n.º 28
0
 /** @return map of cache metrics (hits, misses) */
 public Map<String, long[]> getCacheMetrics() {
   return sampledCacheManagerDelegate.getCacheMetrics();
 }
Exemplo n.º 29
0
 /** @return aggregate off-heap hit rate */
 public long getCacheOffHeapHitRate() {
   return sampledCacheManagerDelegate.getCacheOffHeapHitRate();
 }