Example usage for java.io OutputStream subclass-usage

List of usage examples for java.io OutputStream subclass-usage

Introduction

In this page you can find the example usage for java.io OutputStream subclass-usage.

Usage

From source file org.alfresco.extension.wcmdeployment.mongodb.XmlToBsonMappingOutputStream.java

/**
 * This class TODO
 *
 * @author Peter Monks (pmonks@alfresco.com)
 *
 */

From source file alluxio.underfs.oss.OSSOutputStream.java

/**
 * A stream for writing a file into OSS. The data will be persisted to a temporary directory on the
 * local disk and copied as a complete file when the {@link #close()} method is called.
 */
@NotThreadSafe
public final class OSSOutputStream extends OutputStream {

From source file org.openqa.jetty.http.nio.SocketChannelOutputStream.java

/** 
 * Blocking output stream on non-blocking SocketChannel.  Makes the 
 * assumption that writes will rarely need to block.
 * All writes flush to the channel, and no additional buffering is done.
 * @version $Revision: 1.4 $
 * @author gregw

From source file com.amazonaws.services.s3.internal.MultiFileOutputStream.java

/**
 * Used to split an output stream into multiple files for purposes such as
 * parallel uploads.
 */
public class MultiFileOutputStream extends OutputStream implements OnFileDelete {

From source file com.synopsys.integration.blackduck.service.model.ScannerSplitStream.java

public class ScannerSplitStream extends OutputStream {
    // https://www.cs.cmu.edu/~pattis/15-1XX/common/handouts/ascii.html
    private static final int EOF = -1; // End of file

    private static final int ETX = 3; // End of text, should have no more data

From source file MemoryByteArrayOutputStream.java

/**
 * A string writer that is able to write large amounts of data. The original
 * StringWriter contained in Java doubles its buffersize everytime the buffer
 * overflows. This is nice with small amounts of data, but awfull for huge
 * buffers.
 * 

From source file alluxio.underfs.cos.COSOutputStream.java

/**
 * A stream for writing a file into COS. The data will be persisted to a temporary directory on the
 * local disk and copied as a complete file when the {@link #close()} method is called.
 */
@NotThreadSafe
public final class COSOutputStream extends OutputStream {

From source file org.browsermob.proxy.jetty.http.nio.SocketChannelOutputStream.java

/** 
 * Blocking output stream on non-blocking SocketChannel.  Makes the 
 * assumption that writes will rarely need to block.
 * All writes flush to the channel, and no additional buffering is done.
 * @version $Revision: 1.4 $
 * @author gregw

From source file com.ibm.stocator.fs.swift.SwiftOutputStream.java

/**
 *
 * Wraps OutputStream
 * This class is not thread-safe
 *
 */

From source file org.jenkinsci.plugins.mber.LoggingOutputStream.java

public class LoggingOutputStream extends OutputStream {
    public interface Listener {
        void logPercentComplete(final int percent);
    }

    private final OutputStream output;