hmci/src/main/java/biz/nellemann/hmci/pcm/ServerUtil.java

14 lines
424 B
Java
Raw Normal View History

package biz.nellemann.hmci.pcm;
2021-01-13 07:31:07 +00:00
import java.util.ArrayList;
import java.util.List;
2021-09-08 10:54:51 +00:00
public final class ServerUtil {
2021-09-08 10:54:51 +00:00
public final ServerProcessor processor = new ServerProcessor();
public final ServerMemory memory = new ServerMemory();
public final PhysicalProcessorPool physicalProcessorPool = new PhysicalProcessorPool();
public final List<SharedProcessorPool> sharedProcessorPool = new ArrayList<>();
}