Class RuntimeMxBeanInfo

java.lang.Object
io.deephaven.process.RuntimeMxBeanInfo
All Implemented Interfaces:
PropertySet

@Immutable public abstract class RuntimeMxBeanInfo extends Object implements PropertySet
  • Constructor Details

    • RuntimeMxBeanInfo

      public RuntimeMxBeanInfo()
  • Method Details

    • of

      public static RuntimeMxBeanInfo of(RuntimeMXBean bean)
    • getSystemProperties

      @Parameter public abstract io.deephaven.process.SystemProperties getSystemProperties()
    • getJvmArguments

      @Parameter public abstract io.deephaven.process.JvmArguments getJvmArguments()
    • getManagementSpecVersion

      @Parameter public abstract String getManagementSpecVersion()
    • isBootClassPathSupported

      @Parameter public abstract boolean isBootClassPathSupported()
    • getStartTime

      @Parameter public abstract long getStartTime()
    • traverse

      public final void traverse(PropertyVisitor visitor)
      Description copied from interface: PropertySet
      Traverse this property set and output the property key/values to the given visitor.

      Callers should typically prefer to call PropertyVisitor.visitProperties(PropertySet), as the inversion of logic allows the visitor (the more stateful object) to potentially perform initialization logic and traverse more efficiently.

      Specified by:
      traverse in interface PropertySet
      Parameters:
      visitor - the visitor
      See Also: