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

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

There is a newer version: 1.6.8
Show newest version

package org.holoeverywhere.util;

public interface PoolableManager> {
    T newInstance();

    void onAcquired(T element);

    void onReleased(T element);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy