List of usage examples for java.io FilterInputStream subclass-usage
From source file de.digiway.rapidbreeze.server.model.download.ThrottledInputStream.java
/**
* A {@linkplain InputStream} implementation which can be throttled with a given
* speed. A source {@linkplain InputStream} must by passed which will be used as
* the underlaying source. All read operations return -1 if the inputstream has
* to wait.
*
From source file com.baasbox.android.BaasStream.java
/**
* An input streams over the content of a response
* that gives access to the content type, the content length
* and the id of the associated BaasBox file.
*
* @author Andrea Tortorella
From source file com.docdoku.cli.helpers.ConsoleProgressMonitorInputStream.java
public class ConsoleProgressMonitorInputStream extends FilterInputStream { private long maximum; private long totalRead; private int rotationChar;
From source file com.baidubce.util.LengthCheckInputStream.java
/** * Used to perform length check to ensure the number of bytes read from the underlying input stream is the same as the * expected total. */ @NotThreadSafe public class LengthCheckInputStream extends FilterInputStream {
From source file com.amazonaws.services.s3.internal.AbstractRepeatableInputStream.java
/**
* Abstract base class for input stream wrappers that add support for
* mark/resetting streams that don't natively support it. Implementations must
* provide their own support for reopening streams and rereading to the last
* marked position.
*/
From source file cn.ctyun.amazonaws.services.s3.internal.AbstractRepeatableInputStream.java
/**
* Abstract base class for input stream wrappers that add support for
* mark/resetting streams that don't natively support it. Implementations must
* provide their own support for reopening streams and rereading to the last
* marked position.
*/
From source file org.apache.abdera.protocol.client.util.AutoReleasingInputStream.java
public final class AutoReleasingInputStream extends FilterInputStream { private final HttpMethod method; public AutoReleasingInputStream(HttpMethod method, InputStream in) { super(in);
From source file org.apache.nifi.processors.standard.util.ValidatingBase64InputStream.java
/** * An InputStream that throws an IOException if any byte is read that is not a valid Base64 character. Whitespace is considered valid. */ public class ValidatingBase64InputStream extends FilterInputStream { public ValidatingBase64InputStream(InputStream in) {
From source file org.apache.nifi.processors.standard.util.ValidatingBase32InputStream.java
/** * An InputStream that throws an IOException if any byte is read that is not a valid Base32 character. Whitespace is considered valid. */ public class ValidatingBase32InputStream extends FilterInputStream { private final Base32 b32 = new Base32();
From source file org.apache.jackrabbit.core.data.db.TempFileInputStream.java
/** * An input stream from a temporary file. The file is deleted when the stream is * closed or garbage collected. */ public class TempFileInputStream extends FilterInputStream {