All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ligoj.bootstrap.resource.system.MemoryVo Maven / Gradle / Ivy

There is a newer version: 3.1.22
Show newest version
/*
 * Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE)
 */
package org.ligoj.bootstrap.resource.system;

import lombok.Getter;
import lombok.Setter;

/**
 * Memory settings.
 */
@Getter
@Setter
public class MemoryVo {

	/**
	 * Total amount of free memory available to the JVM.
	 */
	private long freeMemory;

	/**
	 * Maximum amount of memory the JVM will attempt to use.
	 */
	private long maxMemory;

	/**
	 * Total memory currently in use by the JVM
	 */
	private long totalMemory;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy