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 at.uni_salzburg.cs.ckgroup.apos.AposNtrip.java

/**
 * This class implements the APOS-NTRIP service for RTCM SC-104 correction
 * messages as an InputStream. It's an automaton that waits for a valid position
 * message (NMEA GGA) from the GPS receiver and then connects to the APOS-NTRIP
 * service. Until the APOS-NTRIP service sends valid RTCM messages, a read() call
 * is blocked. This class detects connection failures and reconnects to the

From source file org.archive.io.RecordingInputStream.java

/**
 * Stream which records all data read from it, which it acquires from a wrapped
 * input stream.
 *
 * Makes use of a RecordingOutputStream for recording because of its being
 * file backed so we can write massive amounts of data w/o worrying about

From source file com.sshtools.j2ssh.connection.ChannelInputStream.java

/**
 *
 *
 * @author $author$
 * @version $Revision: 1.1.1.1 $
 */

From source file org.apache.hadoop.security.SaslInputStream.java

/**
 * A SaslInputStream is composed of an InputStream and a SaslServer (or
 * SaslClient) so that read() methods return data that are read in from the
 * underlying InputStream but have been additionally processed by the SaslServer
 * (or SaslClient) object. The SaslServer (or SaslClient) object must be fully
 * initialized before being used by a SaslInputStream.

From source file stargate.drivers.sourcefs.hdfs.HDFSChunkReader.java

/**
 *
 * @author iychoi
 */
public class HDFSChunkReader extends InputStream {

From source file CountdownInputStream.java

/**
 * Counts down from a specified value the number of bytes actually read
 * from the wrapped InputStream. 
 *
 * Returns minus one (-1) early from readXXX methods if the count
 * down reaches zero (0) before the end of the wrapped InputStream

From source file CountdownInputStream.java

/**
 * Counts down from a specified value the number of bytes actually read
 * from the wrapped InputStream. <p>
 *
 * Returns minus one (-1) early from readXXX methods if the count
 * down reaches zero (0) before the end of the wrapped InputStream

From source file com.github.horrorho.inflatabledonkey.util.LZFSEExtInputStream.java

/**
 *
 * @author Ayesha
 */
public class LZFSEExtInputStream extends InputStream implements Closeable {

From source file org.apache.james.mime4j.codec.Base64InputStream.java

/**
 * Performs Base-64 decoding on an underlying stream.
 */
public class Base64InputStream extends InputStream {
    private static Log log = LogFactory.getLog(Base64InputStream.class);

From source file microsoft.exchange.webservices.data.misc.HangingTraceStream.java

/**
 * A stream that traces everything it returns from its Read() call.
 * That trace may be retrieved at the end of the stream.
 */
public class HangingTraceStream extends InputStream {