List of usage examples for java.io InputStream subclass-usage
From source file fedora.client.HttpInputStream.java
/** * An InputStream from an HttpMethod. When this InputStream is close()d, the * underlying http connection is automatically released. */ public class HttpInputStream extends InputStream {
From source file org.fcrepo.client.HttpInputStream.java
/** * An InputStream from an HttpMethod. When this InputStream is close()d, the * underlying http connection is automatically released. */ public class HttpInputStream extends InputStream {
From source file org.fcrepo.localservices.saxon.HttpInputStream.java
* An InputStream from an HttpMethod. When this InputStream is close()d, the * underlying http connection is automatically released. */ public class HttpInputStream extends InputStream { private final HttpClient m_client;
From source file fedora.common.http.HttpInputStream.java
/** * An InputStream from an HttpMethod. When this InputStream is close()d, the * underlying http connection is automatically released. */ public class HttpInputStream extends InputStream {
From source file org.fcrepo.common.http.HttpInputStream.java
* An InputStream from an HttpMethod. When this InputStream is close()d, the * underlying http connection is automatically released. */ public class HttpInputStream extends InputStream { private final HttpClient m_client;
From source file com.allogy.io.BulkUpdateInputStream.java
public class BulkUpdateInputStream extends InputStream { private final Reader headerReader; private final Reader footerReader; Iterator<InputStream> currentInputStreamIterator; InputStream currentInputStream;
From source file org.sourcepit.common.utils.io.UnclosableInputStream.java
public abstract class UnclosableInputStream extends InputStream { private InputStream delegate; private boolean closed; public static UnclosableInputStream wrap(final InputStream inputStream) {
From source file nl.nn.adapterframework.http.ReleaseConnectionAfterReadInputStream.java
public class ReleaseConnectionAfterReadInputStream extends InputStream { InputStream inputStream; HttpMethod httpMethod; public ReleaseConnectionAfterReadInputStream(HttpMethod httpMethod, InputStream inputStream) throws IOException {
From source file com.adobe.communities.ugc.migration.importer.BufferedBase64DecoderStream.java
public class BufferedBase64DecoderStream extends InputStream { final private int WRITE_BUFFER_SIZE = 1920; // 1920 chosen because it's the number of characters in a base64 // String // representing 1440 bytes, which was the chunk size used by the UGCExportHelper private byte[] readBuffer = null; private char[] writeBuffer;
From source file core.com.qiniu.internal.SdkInputStream.java
/** * Base class for AWS Java SDK specific {@link InputStream}. */ public abstract class SdkInputStream extends InputStream implements MetricAware { /** * Returns the underlying input stream, if any, from the subclass; or null