01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.objectserver.core.api;
05:
06: import com.tc.objectserver.api.ObjectManagerStats;
07: import com.tc.stats.counter.sampled.SampledCounter;
08:
09: public interface DSOGlobalServerStats {
10:
11: SampledCounter getObjectFlushCounter();
12:
13: SampledCounter getObjectFaultCounter();
14:
15: SampledCounter getTransactionCounter();
16:
17: ObjectManagerStats getObjectManagerStats();
18:
19: }
|