public interface CompilationMXBean
extends java.lang.management.PlatformManagedObject
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName()
Returns the name of the Just-in-time (JIT) compiler.
|
long |
getTotalCompilationTime()
Returns the approximate accumulated elapsed time (in milliseconds)
spent in compilation.
|
long |
getTotalOutstandingCompiles()
Provides the total number of enqueued and in-progress compilations at the time of request.
|
long |
getTotalPerformedProfileDrivenTier1Compiles()
Provides the total number of performed tier 1 compilations driven by ReadyNow by the time of request
|
long |
getTotalPerformedProfileDrivenTier2Compiles()
Provides the total number of performed tier 2 compilations driven by ReadyNow by the time of request
|
long |
getTotalPerformedTier1Compiles()
Provides the total number of tier 1 compilations performed by the time of request
|
long |
getTotalPerformedTier2Compiles()
Provides the total number of tier 2 compilations performed by the time of request
|
java.lang.String |
getVersion()
Version of the CompilationMXBean application programming interface.
|
boolean |
isCompilationTimeMonitoringSupported()
Tests if the Java virtual machine supports the monitoring of
compilation time.
|
java.lang.String getName()
long getTotalCompilationTime()
This method is optionally supported by the platform.
A Java virtual machine implementation may not support the compilation
time monitoring. The isCompilationTimeMonitoringSupported()
method can be used to determine if the Java virtual machine
supports this operation.
This value does not indicate the level of performance of the Java virtual machine and is not intended for performance comparisons of different virtual machine implementations. The implementations may have different definitions and different measurements of the compilation time.
java.lang.UnsupportedOperationException
- if the Java
virtual machine does not support
this operation.long getTotalOutstandingCompiles()
long
non-negative number indicating compile countlong getTotalPerformedProfileDrivenTier1Compiles()
long
non-negative number indicating compile countlong getTotalPerformedProfileDrivenTier2Compiles()
long
non-negative number indicating compile countlong getTotalPerformedTier1Compiles()
long
non-negative number indicating compile countlong getTotalPerformedTier2Compiles()
long
non-negative number indicating compile countjava.lang.String getVersion()
Version of the CompilationMXBean application programming interface. The format for the version is majorVersion.minorVersion.microVersion.
boolean isCompilationTimeMonitoringSupported()
true
if the monitoring of compilation time is
supported; false
otherwise. Submit a bug or feature request
Copyright © 2015-2017, Azul Systems, Inc. All rights reserved.
Azul Systems and Zing are registered trademarks of Azul Systems, Inc.