List of usage examples for java.io InputStream subclass-usage
From source file com.example.base.http.ResponseStream.java
/** * ?? * @author lim * */ public class ResponseStream extends InputStream {
From source file org.brekka.paveway.core.services.impl.MultipartInputStream.java
class MultipartInputStream extends InputStream { private final CryptedFile cryptedFile; private final Iterator<CryptedPart> partsIterator; private final ResourceStorageService resourceStorageService;
From source file com.linuxbox.util.HashingInputStream.java
/**
* This is a stream that calculates a hash/message digest on the data that
* passes through it. It can use either an existing message digest (say if it's
* primed with other data) or create one if provided with a String describing
* the algorithm to use.
*
From source file com.android.idtt.http.client.ResponseStream.java
/** * Author: wyouflf * Date: 13-7-31 * Time: ?3:27 */ public class ResponseStream extends InputStream {
From source file hsyndicate.fs.SyndicateFSInputStream.java
public class SyndicateFSInputStream extends InputStream { private static final Log LOG = LogFactory.getLog(SyndicateFSInputStream.class); private SyndicateFSFileHandle handle; private long offset;
From source file com.lidroid.xutils.http.client.ResponseStream.java
/** * Author: wyouflf * Date: 13-7-31 * Time: ?3:27 */ public class ResponseStream extends InputStream {
From source file org.apache.hadoop.io.BufferedByteInputStream.java
/** * BufferedByteInputStream uses an underlying in-memory staging buffer for * reading bytes from the underlying input stream. The actual reading is done * by a separate thread. */ public class BufferedByteInputStream extends InputStream {
From source file nl.esciencecenter.ptk.web.ResponseInputStream.java
/**
* Managed ResponseInputStream from a HttpGet Request.
* This Stream auto closes the Actual HTTP STream when an IOException occurs no input
* is available.
* This to release the HTTP Connection ASAP. This is needed when using a Multi-threaded connection manager.
* Either call close() or autoClose(), which both are idempotent methods, they can be called more then once,
From source file com.amazon.s3.http.HttpMethodReleaseInputStream.java
/**
* Utility class to wrap InputStreams obtained from an HttpClient library's
* HttpMethod object, and ensure the stream and HTTP connection are properly
* released.
* <p>
* This input stream wrapper is used to ensure that input streams obtained
From source file org.jclouds.util.InputStreamChain.java
/**
* {@link InputStream} implementation that allows chaining of various streams for seamless
* sequential reading
*
* @author Adrian Cole
* @author Tomas Varaneckas <tomas.varaneckas@gmail.com>