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

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