KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > objectserver > core > api > DSOGlobalServerStats


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.objectserver.core.api;
5
6 import com.tc.objectserver.api.ObjectManagerStats;
7 import com.tc.stats.counter.sampled.SampledCounter;
8
9 public interface DSOGlobalServerStats {
10
11   SampledCounter getObjectFlushCounter();
12
13   SampledCounter getObjectFaultCounter();
14   
15   SampledCounter getTransactionCounter();
16   
17   ObjectManagerStats getObjectManagerStats();
18
19 }
20
Popular Tags