VirtualThreadsInfo Class — spring-boot Architecture
Architecture documentation for the VirtualThreadsInfo class in ProcessInfo.java from the spring-boot codebase.
Entity Profile
Source Code
core/spring-boot/src/main/java/org/springframework/boot/info/ProcessInfo.java lines 221–254
public static class VirtualThreadsInfo {
private final int mounted;
private final long queued;
private final int parallelism;
private final int poolSize;
VirtualThreadsInfo(int mounted, long queued, int parallelism, int poolSize) {
this.mounted = mounted;
this.queued = queued;
this.parallelism = parallelism;
this.poolSize = poolSize;
}
public int getMounted() {
return this.mounted;
}
public long getQueued() {
return this.queued;
}
public int getParallelism() {
return this.parallelism;
}
public int getPoolSize() {
return this.poolSize;
}
}
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free