Example usage for org.apache.commons.io.input ProxyInputStream subclass-usage

List of usage examples for org.apache.commons.io.input ProxyInputStream subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.io.input ProxyInputStream subclass-usage.

Usage

From source file ch.cyberduck.core.cryptomator.CryptoInputStream.java

public class CryptoInputStream extends ProxyInputStream {

    private final InputStream proxy;
    private final Cryptor cryptor;
    private final FileHeader header;

From source file com.streamsets.pipeline.lib.io.CountingInputStream.java

/**
 * Reports position and count.
 * commons io CountingInputStream does not report position which we need to keep track of the offset.
 */
public class CountingInputStream extends ProxyInputStream {

From source file com.cloudera.sqoop.io.FixedLengthInputStream.java

/**
 * Provides an InputStream that can consume a fixed maximum number of bytes
 * from an underlying stream. Closing the FixedLengthInputStream does not
 * close the underlying stream. After reading the maximum number of available
 * bytes this acts as though EOF has been reached.
 */

From source file org.apache.sqoop.io.FixedLengthInputStream.java

/**
 * Provides an InputStream that can consume a fixed maximum number of bytes
 * from an underlying stream. Closing the FixedLengthInputStream does not
 * close the underlying stream. After reading the maximum number of available
 * bytes this acts as though EOF has been reached.
 */

From source file org.opencastproject.util.ProgressInputStream.java

/**
 * An {@link InputStream} that counts the number of bytes read.
 */
public class ProgressInputStream extends ProxyInputStream {

    private final PropertyChangeSupport propertyChangeSupport = new PropertyChangeSupport(this);

From source file org.jlibrary.core.jcr.modules.ImportInputStream.java

/**
 * Input stream used to read only until a certain limit
 * 
 * @author mpermar
 *
 */

From source file ch.cyberduck.core.sds.triplecrypt.CryptoInputStream.java

public class CryptoInputStream extends ProxyInputStream {

    private final InputStream proxy;
    private final FileDecryptionCipher cipher;
    private final byte[] tag;

From source file es.gob.afirma.signers.ooxml.be.fedict.eid.applet.service.signer.NoCloseInputStream.java

/** Input Stream proxy that doesn't close the underlying input stream.
 * @author fcorneli */
public final class NoCloseInputStream extends ProxyInputStream {

    /** Main constructor.
     * @param proxy */

From source file be.fedict.eid.applet.service.signer.NoCloseInputStream.java

/**
 * Input Stream proxy that doesn't close the underlying input stream.
 * 
 * @author Frank Cornelis
 * 
 */