
com.artemis.annotations.InitialPoolSize Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artemis-odb Show documentation
Show all versions of artemis-odb Show documentation
Fork of Artemis Entity System Framework.
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