com.firefly.utils.lang.pool.ObjectFactory Maven / Gradle / Ivy
package com.firefly.utils.lang.pool;
/**
* Represents the mechanism to create new objects to be used in an object pool.
*/
public interface ObjectFactory {
/**
* Returns a new instance of an object of type T.
*
* @return T an new instance of the object of type T
*/
public T createNew();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy