< prev index next >

src/java.management/share/classes/sun/management/HotspotRuntimeMBean.java

Print this page




  47     /**
  48      * Returns the accumulated time spent at safepoints in milliseconds.
  49      * This is the accumulated elapsed time that the application has
  50      * been stopped for safepoint operations.
  51      *
  52      * @return the accumulated time spent at safepoints in milliseconds.
  53      */
  54     public long getTotalSafepointTime();
  55 
  56     /**
  57      * Returns the accumulated time spent getting to safepoints in milliseconds.
  58      *
  59      * @return the accumulated time spent getting to safepoints in milliseconds.
  60      */
  61     public long getSafepointSyncTime();
  62 
  63     /**
  64      * Returns a list of internal counters maintained in the Java
  65      * virtual machine for the runtime system.
  66      *
  67      * @return a <tt>List</tt> of internal counters maintained in the VM
  68      * for the runtime system.
  69      */
  70     public java.util.List<Counter> getInternalRuntimeCounters();
  71 }


  47     /**
  48      * Returns the accumulated time spent at safepoints in milliseconds.
  49      * This is the accumulated elapsed time that the application has
  50      * been stopped for safepoint operations.
  51      *
  52      * @return the accumulated time spent at safepoints in milliseconds.
  53      */
  54     public long getTotalSafepointTime();
  55 
  56     /**
  57      * Returns the accumulated time spent getting to safepoints in milliseconds.
  58      *
  59      * @return the accumulated time spent getting to safepoints in milliseconds.
  60      */
  61     public long getSafepointSyncTime();
  62 
  63     /**
  64      * Returns a list of internal counters maintained in the Java
  65      * virtual machine for the runtime system.
  66      *
  67      * @return a {@code List} of internal counters maintained in the VM
  68      * for the runtime system.
  69      */
  70     public java.util.List<Counter> getInternalRuntimeCounters();
  71 }
< prev index next >