List of usage examples for java.io InputStream subclass-usage
From source file com.norconex.commons.lang.io.FilteredInputStream.java
/**
* Decorates an InputStream with a stream filter. The stream filter
* allows to control which line of text is being returned by the decorated
* instance when read.
* @author Pascal Essiembre
*/
From source file com.joyent.manta.client.MantaObjectInputStream.java
/**
* {@link InputStream} implementation that wraps the input stream provided from {@link MantaClient} and implements
* {@link MantaObject} so that you can obtain metadata information.
*
* @author <a href="https://github.com/dekobon">Elijah Zupancic</a>
*/
From source file org.cloudfoundry.client.lib.io.DynamicInputStream.java
/**
* InputStream that dynamically loads data on demand as the stream is read. Subclasses must implement the
* {@link #writeMoreData()} method.
*
* @author Phillip Webb
*/
From source file org.globus.gsi.gssapi.TokenInputStream.java
/** * Used as token-oriented input stream needed for SSL library I/O abstraction. */ public class TokenInputStream extends InputStream { private static Log logger = LogFactory.getLog(TokenInputStream.class.getName());
From source file FastMultiByteArrayInputStream.java
/**
*
* <DIV lang="en"></DIV>
* <DIV lang="ja"></DIV>
*
* @author Makoto YUI (yuin405+xbird@gmail.com)
From source file org.nuxeo.ecm.core.repository.jcr.JCRBlobInputStream.java
/**
* This input stream is used to wrap the input stream that jackrabbit return for blob values so that
* we can reset it at a higher level - to be able to read it more than once without refetching the
* blob from the repository.
* <p>
* This fixes issue NXP-2072.
From source file se.kodapan.io.http.HttpGetInputStream.java
/** * @author kalle * @since 2010-apr-25 22:11:29 */ public class HttpGetInputStream extends InputStream {
From source file com.gc.iotools.stream.is.ChunkInputStream.java
/**
* <p>
* This class is useful when you have an <code>InputStream</code> and you want
* to filter some parts of it basing on its content without reading it into
* memory.
* </p>
From source file org.broadleafcommerce.common.extensibility.context.ResourceInputStream.java
/** * @author jfischer */ public class ResourceInputStream extends InputStream { private final InputStream is;
From source file org.wso2.carbon.mediator.transform.stream.ElementInputStream.java
/** * This class extends from InputStream. * The data is retrieved from the IOElementPipe when reading from this class. */ public class ElementInputStream extends InputStream {