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

com.payneteasy.superfly.common.pool.Pool Maven / Gradle / Ivy

There is a newer version: 1.7-32
Show newest version
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