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

org.holoeverywhere.util.Pool Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version

package org.holoeverywhere.util;

public interface Pool> {
    public abstract T acquire();

    public abstract void release(T element);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy