Class MvnMemoryPoolSnapshot_1_0

    • Field Summary

      Fields 
      Modifier and Type Field Description
      long committed
      The amount of memory in bytes that is committed for the Java virtual machine to use.
      boolean heap
      Whether the memory pool is of type heap.
      long init
      The amount of memory in bytes that the Java virtual machine initially requests from the operating system for memory management.
      long max
      The maximum amount of memory in bytes that can be used for memory management.
      String name
      The name representing this memory pool.
      long used
      The amount of used memory in bytes.
    • Constructor Summary

      Constructors 
      Constructor Description
      MvnMemoryPoolSnapshot_1_0​(String name, boolean heap, long init, long used, long committed, long max)  
    • Field Detail

      • name

        public final String name
        The name representing this memory pool.
      • heap

        public final boolean heap
        Whether the memory pool is of type heap.
      • init

        public final long init
        The amount of memory in bytes that the Java virtual machine initially requests from the operating system for memory management.

        Returns -1 if the initial memory size is undefined.

      • used

        public final long used
        The amount of used memory in bytes.
      • committed

        public final long committed
        The amount of memory in bytes that is committed for the Java virtual machine to use.
      • max

        public final long max
        The maximum amount of memory in bytes that can be used for memory management.

        Returns -1 if the maximum memory size is undefined.

    • Constructor Detail

      • MvnMemoryPoolSnapshot_1_0

        public MvnMemoryPoolSnapshot_1_0​(String name,
                                         boolean heap,
                                         long init,
                                         long used,
                                         long committed,
                                         long max)