com.payneteasy.superfly.common.pool.Pool Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of superfly-common Show documentation
Show all versions of superfly-common Show documentation
Common classes used by other Superfly libraries
package com.payneteasy.superfly.common.pool;
/**
*
* Simple pool abstraction. Every pool object is uniquely defined
* by P (which stands for Parameters - we mean creation parameters
* here).
*
*
* P instances must implement equals/hashCode methods.
*
*
* @author rpuch
*/
public interface Pool {
T get(P parameters);
void flushAll();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy