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

com.artemis.annotations.InitialPoolSize Maven / Gradle / Ivy

The newest version!
package com.artemis.annotations;

import java.lang.annotation.*;

/**
 * Specifies the initial pool size for component pools
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Documented
public @interface InitialPoolSize {

	/**
	 * The initial amount of instances created. Defaults to 1.
	 */
	int size() default 1;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy