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

net.wicp.tams.common.beans.MemoryInfo Maven / Gradle / Ivy

There is a newer version: 6.1.0
Show newest version
package net.wicp.tams.common.beans;

import java.io.Serializable;

import lombok.Data;

/**
 * 
 * @author 偏锋书生
 *
 */
@Data
public class MemoryInfo implements Serializable {
	private static final long serialVersionUID = 1L;
	// 总内存
	private int totalMemory;
	// 已用内存
	private int usedMemory;
	// 剩余
	private int freeMemory;
	//
	private int sharedMemory;
	// 缓存
	private int buffMemory;
	// 可用内存
	private int availableMemory;
	// 总交换
	private int totalSwap;
	// 已用交换
	private int usedSwap;
	// 剩余交换
	private int freeSwap;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy