![JAR search and dependency download from the Maven repository](/logo.png)
link.jfire.socket.socketserver.bus.ServerStatusData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfire-socket Show documentation
Show all versions of jfire-socket Show documentation
Jfire - socket is a server-side framework based on AIO. Users only need a simple implementation of a business logic processing interface can be the business data processing. The framework provides the client and server at the same time. Have strong connection capacity. Single server provides tens of thousands of connections.
The newest version!
package link.jfire.socket.socketserver.bus;
import java.util.HashMap;
public class ServerStatusData
{
private Integer nowConnect;
private Integer serverMemory;
private Integer bufferCacheSize;
private String jvmMem;
private HashMap connectMap = new HashMap<>();
private HashMap cacheMap = new HashMap<>();
public String getJvmMem()
{
return jvmMem;
}
public void setJvmMem(String jvmMem)
{
this.jvmMem = jvmMem;
}
public Integer getNowConnect()
{
return nowConnect;
}
public void setNowConnect(Integer nowConnect)
{
this.nowConnect = nowConnect;
}
public Integer getServerMemory()
{
return serverMemory;
}
public void setServerMemory(Integer serverMemory)
{
this.serverMemory = serverMemory;
}
public Integer getBufferCacheSize()
{
return bufferCacheSize;
}
public void setBufferCacheSize(Integer bufferCacheSize)
{
this.bufferCacheSize = bufferCacheSize;
}
public HashMap getConnectMap()
{
return connectMap;
}
public void setConnectMap(HashMap connectMap)
{
this.connectMap = connectMap;
}
public HashMap getCacheMap()
{
return cacheMap;
}
public void setCacheMap(HashMap cacheMap)
{
this.cacheMap = cacheMap;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy