![JAR search and dependency download from the Maven repository](/logo.png)
io.legaldocml.pool.Pool Maven / Gradle / Ivy
package io.legaldocml.pool;
import java.io.Closeable;
/**
* @author Jacques Militello
*/
public interface Pool extends Closeable {
T checkOut();
void checkIn(T t);
void close();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy