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

com.bluecatcode.common.io.Closer Maven / Gradle / Ivy

The newest version!
package com.bluecatcode.common.io;

import javax.annotation.WillClose;

/**
 * @see Closeables#closeableFrom(Object, Closer)
 */
public interface Closer {
    void close(@WillClose T reference) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy