Home / Class/ Pool Class — spring-boot Architecture

Pool Class — spring-boot Architecture

Architecture documentation for the Pool class in TaskSchedulingProperties.java from the spring-boot codebase.

Entity Profile

Relationship Graph

Source Code

core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/task/TaskSchedulingProperties.java lines 65–81

	public static class Pool {

		/**
		 * Maximum allowed number of threads. Doesn't have an effect if virtual threads
		 * are enabled.
		 */
		private int size = 1;

		public int getSize() {
			return this.size;
		}

		public void setSize(int size) {
			this.size = size;
		}

	}

Domain

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free