1 23 24 28 29 package com.sun.enterprise.admin.monitor.stats; 30 import javax.management.j2ee.statistics.Stats ; 31 import javax.management.j2ee.statistics.CountStatistic ; 32 33 40 public interface JVMMemoryStats extends Stats { 41 42 47 public CountStatistic getObjectPendingFinalizationCount(); 48 49 53 public CountStatistic getInitHeapSize(); 54 55 59 public CountStatistic getUsedHeapSize(); 60 61 66 public CountStatistic getMaxHeapSize(); 67 68 73 public CountStatistic getCommittedHeapSize(); 74 75 80 public CountStatistic getInitNonHeapSize(); 81 82 86 public CountStatistic getUsedNonHeapSize(); 87 88 93 public CountStatistic getMaxNonHeapSize(); 94 95 100 public CountStatistic getCommittedNonHeapSize(); 101 102 } 103 | Popular Tags |