Example usage for org.apache.commons.io.output CountingOutputStream subclass-usage

List of usage examples for org.apache.commons.io.output CountingOutputStream subclass-usage

Introduction

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

Usage

From source file net.rpproject.dl.DownloadWatcher.java

/**
 *
 * @author Michael Rosen
 */
public class DownloadWatcher extends CountingOutputStream {

From source file org.mule.tools.npm.DownloadCountingOutputStream.java

public class DownloadCountingOutputStream extends CountingOutputStream {

    private ActionListener listener = null;

    public DownloadCountingOutputStream(OutputStream out) {
        super(out);

From source file launcher.DownloadCountingOutputStream.java

/**
 *
 * @author FranklinL <franko@franklinl.com>
 */
public class DownloadCountingOutputStream extends CountingOutputStream {

From source file org.mousephenotype.dcc.crawler.DownloadTracker.java

/**
 * The download tracker regularly updates the number of bytes that have
 * been downloaded so far. This may be used by the tracker web services to
 * check the latest file download status.
 *
 * @author Gagarine Yaikhom <g.yaikhom@har.mrc.ac.uk>

From source file net.chris54721.infinitycubed.utils.DownloadCountingOutputStream.java

public class DownloadCountingOutputStream extends CountingOutputStream {

    private long totalBytes = 0;
    private ActionListener listener = null;

    public DownloadCountingOutputStream(long totalBytes, OutputStream out) {

From source file net.CountingStream.java

public class CountingStream extends CountingOutputStream {

    private ActionListener l = null;

    /**
    *Constructor Method

From source file com.isomorphic.maven.util.LoggingCountingOutputStream.java

/**
 * @author Daniel Johansson
 * @since 2014-02-17 09:04
 */
public class LoggingCountingOutputStream extends CountingOutputStream {

From source file org.eclipse.kura.core.deployment.download.impl.GenericDownloadCountingOutputStream.java

public class GenericDownloadCountingOutputStream extends CountingOutputStream {

    private int propResolution;
    private int propBufferSize;
    private int propConnectTimeout = 5000;
    private int propReadTimeout = 6000;