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;
}