List of usage examples for java.io InputStream subclass-usage
From source file com.blm.orc.InStream.java
abstract class InStream extends InputStream { private static final Log LOG = LogFactory.getLog(InStream.class); private static class UncompressedStream extends InStream { private final String name;
From source file com.joyent.manta.client.MantaSeekableByteChannel.java
/**
* A read-only {@link SeekableByteChannel} implementation that utilizes
* the HTTP Range header to allow you to seek any position in an object on
* Manta. Connection opening to the remote server happens lazily upon the
* first read() or size() method invoked.
*
From source file org.apache.tez.engine.common.sort.impl.dflt.SortBufferInputStream.java
class SortBufferInputStream extends InputStream { private static final Log LOG = LogFactory.getLog(SortBufferInputStream.class); private final InMemoryShuffleSorter sorter; private InMemoryWriter sortOutput;
From source file org.openqa.jetty.http.nio.ByteBufferInputStream.java
/** * * @version $Revision: 1.5 $ * @author gregw */ public class ByteBufferInputStream extends InputStream {
From source file org.apache.axiom.attachments.BoundaryPushbackInputStream.java
/**
* An InputStream that reads bytes up to a boundary.
* The boundary is not logically part of the bytes to read.
* The wrapped PushbackInputStream is set to to the byte after
* the boundary once the bytes are read.
* The boundary is not logically returned.
From source file org.beepcore.beep.core.InputDataStreamAdapter.java
public class InputDataStreamAdapter extends java.io.InputStream { InputDataStreamAdapter(InputDataStream ids) { this.ids = ids; }
From source file org.apache.tez.runtime.library.common.sort.impl.dflt.SortBufferInputStream.java
public class SortBufferInputStream extends InputStream { private static final Log LOG = LogFactory.getLog(SortBufferInputStream.class); private final InMemoryShuffleSorter sorter; private InMemoryWriter sortOutput;
From source file com.izforge.izpack.core.io.FileSpanningInputStream.java
/**
* An <tt>InputStream</tt> which transparently spans over multiple volumes.
*
* @author Dennis Reil, <Dennis.Reil@reddot.de>
* @author Tim Anderson
* @see FileSpanningOutputStream
From source file StringInputStream.java
/**
* minimal InputStream subclass to fetch bytes form a String
*
* @author Fred Toussi (fredt@users dot sourceforge.net)
* @version 1.7.0
*/
From source file org.browsermob.proxy.jetty.http.nio.ByteBufferInputStream.java
/** * * @version $Revision: 1.5 $ * @author gregw */ public class ByteBufferInputStream extends InputStream {