Example usage for java.io InputStream subclass-usage

List of usage examples for java.io InputStream subclass-usage

Introduction

In this page you can find the example usage for java.io InputStream subclass-usage.

Usage

From source file processing.core.PRequest.java

/**
 * The <b>PRequest</b> object represents an active network request. They are
 * returned by the methods in the <b>PClient</b> used to initiate network
 * requests. A request object can be in one of the states specified by the
 * constant values below. As the state of the request changes, library events
 * are fired to notify the sketch.

From source file org.anarres.lzo.LzoInputStream.java

/**
 *
 * @author shevek
 */
public class LzoInputStream extends InputStream {

From source file org.gridgain.grid.kernal.ggfs.hadoop.GridGgfsHadoopInputStream.java

/**
 * GGFS input stream wrapper for hadoop interfaces.
 */
@SuppressWarnings("FieldAccessedSynchronizedAndUnsynchronized")
public final class GridGgfsHadoopInputStream extends InputStream
        implements Seekable, PositionedReadable, GridGgfsHadoopStreamEventListener {

From source file org.apache.hadoop.fs.azure.PageBlobInputStream.java

/**
 * An input stream that reads file data from a page blob stored
 * using ASV's custom format.
 */

final class PageBlobInputStream extends InputStream {

From source file com.microsoft.tfs.core.httpclient.ChunkedInputStream.java

/**
 * <p>
 * Transparently coalesces chunks of a HTTP stream that uses Transfer-Encoding
 * chunked.
 * </p>
 *

From source file org.apache.ignite.internal.processors.hadoop.impl.igfs.HadoopIgfsInputStream.java

/**
 * IGFS input stream wrapper for hadoop interfaces.
 */
@SuppressWarnings("FieldAccessedSynchronizedAndUnsynchronized")
public final class HadoopIgfsInputStream extends InputStream
        implements Seekable, PositionedReadable, HadoopIgfsStreamEventListener {

From source file org.lockss.filter.html.HtmlFilterInputStream.java

/**
 * InputStream that parses HTML input, applies a user-supplied
 * transformation to the parse tree, then makes the regenerated HTML text
 * available to be read.  <i>Eg</i> to exclude all <code>div</code> nodes
 * with a certain attribute, (<i>ie</i> sections of the html input matching
 * <code>&lt;div someattr="someval" ...&gt; ... &lt;/div&gt;</code>):

From source file mitm.common.security.crypto.PBDecryptionInputStream.java

/**
 * InputStream that must be wrapped around another InputStream so the data can be decrypted.
 * 
 * This class is not thread safe.
 * 
 * @author Martijn Brinkers

From source file org.rhq.enterprise.server.sync.ExportingInputStream.java

/**
 * Reading from this input stream produces the export file in a lazy (and therefore memory efficient)
 * manner.
 *
 * @author Lukas Krejci
 */

From source file LZFInputStream.java

/**
 * An input stream to read from an LZF stream.
 * The data is automatically expanded.
 */
public class LZFInputStream extends InputStream {