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.runtime;
05:
06: public interface JVMMemoryManager {
07:
08: public MemoryUsage getMemoryUsage();
09:
10: public MemoryUsage getOldGenUsage();
11:
12: public boolean isMemoryPoolMonitoringSupported();
13:
14: }
|