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

com.firefly.utils.lang.pool.ObjectFactory Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy