March 2005
Intermediate to advanced
1254 pages
104h 21m
English
CompilationMXBean
This MXBean interface defines
methods for querying the just-in-time compiler of the
Java virtual machine. getName(
)
returns an identifying name for the
compiler. If the implementation tracks compilation time,
getTotalCompilationTime( ) returns the approximate
total compilation time in milliseconds.
public interface CompilationMXBean { // Public Instance Methods String getName( ); long getTotalCompilationTime( ); boolean isCompilationTimeMonitoringSupported( ); }
ManagementFactory.getCompilationMXBean( )