List of usage examples for java.io Closeable interface-usage
From source file com.dsclab.loader.export.DBClient.java
/** * * @author Shiou */ public class DBClient implements Closeable { private static final Log LOG = LogFactory.getLog(DBClient.class);
From source file com.smartsheet.api.internal.http.HttpClient.java
/** * This interface defines methods to make an HTTP request. * * Thread Safety: Implementation of this interface must be thread safe. */ public interface HttpClient extends Closeable {
From source file org.celeria.minecraft.backup.Archive.java
@Immutable class Archive implements Closeable { private final ZipOutputStream output; @Inject Archive(final ZipOutputStream output) {
From source file biospectra.verification.MetagenomicReadGenerator.java
/** * * @author iychoi */ public class MetagenomicReadGenerator implements Closeable { private static final Log LOG = LogFactory.getLog(MetagenomicReadGenerator.class);
From source file com.dangdang.config.service.support.spring.ConfigGroupResource.java
/**
* Spring Property Sources support
*
* @author <a href="mailto:wangyuxuan@dangdang.com">Yuxuan Wang</a>
*
*/
From source file org.iplantcollaborative.irods.DataStoreClientManager.java
/** * * @author iychoi */ public class DataStoreClientManager implements Closeable {
From source file uk.ac.cam.cl.dtg.segue.database.PostgresSqlDb.java
/** * PostgresSqlDb adapter. * */ public class PostgresSqlDb implements Closeable {
From source file org.jboss.qa.jcontainer.Client.java
@Slf4j public abstract class Client<T extends Configuration> implements Closeable { protected T configuration; public Client(T configuration) {
From source file com.mothsoft.alexis.util.HttpClientResponse.java
public final class HttpClientResponse implements Closeable { private final HttpRequestBase request; private final int statusCode; private final String etag; private final Date lastModifiedDate;
From source file org.apache.blur.store.blockcache_v2.IndexInputCache.java
public abstract class IndexInputCache implements Closeable { protected final long _fileLength; protected final int _cacheBlockSize; protected final MeterWrapper _hits;